How to Enable or Disable Ctrl+Alt+Delete Secure Sign-in on Lock Screen in Windows 11

This tutorial shows you how to turn on or off a security feature in Windows 11. When enabled, users must press Ctrl + Alt + Delete on the lock screen before signing in.

Why This Matters

The lock screen is what you see when your computer starts up or when you lock it (press Win + L). You need to get past this screen to reach the sign-in screen.

Enabling secure sign-in adds extra protection. It forces users to press Ctrl + Alt + Delete before signing in. This prevents fake sign-in screens created by malware from stealing your password.

What You Need

You must be signed in as an administrator to change this setting.

Option One: Use the User Accounts Tool

  1. Open the User Accounts tool (netplwiz).
  2. Click the Advanced tab.
  3. Check the box next to Require users to press Ctrl+Alt+Delete to turn it on. Uncheck it to turn it off.
  4. Click OK.

Option Two: Use Local Security Policy

Note: This option only works on Windows 11 Pro, Enterprise, and Education editions. All versions can use Option Three instead.

  1. ⚙️ Admin Required: Open Local Security Policy by typing secpol.msc in your search bar.
  2. In the left pane, click Local Policies, then click Security Options.
  3. In the right pane, double-click Interactive Logon: Do not require CTRL+ALT+DEL.
  4. Select Enabled to turn off secure sign-in. Select Disabled to turn it on.
  5. Click OK.
  6. Close Local Security Policy if you want.
windows 11 ctrl alt delete sign in screen
windows 11 ctrl alt delete sign in screen
windows 11 ctrl alt delete sign in screen options
windows 11 ctrl alt delete sign in screen options

Option Three: Use the Registry

⚙️ Admin Required: The registry is an advanced tool. Mistakes here can cause problems.

To Turn On Secure Sign-in

Find this registry path and change the value:

reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DisableCAD /t REG_DWORD /d 0 /f
reg delete "HKCU\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DisableCAD /f
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v DisableCAD /t REG_DWORD /d 0 /f
reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System" /v DisableCAD /f

To Turn Off Secure Sign-in

This is the default setting.

Set the entry:

reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DisableCAD /t REG_DWORD /d 1 /f
reg delete "HKCU\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DisableCAD /f
reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v DisableCAD /f
reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System" /v DisableCAD /f

Summary

You now know how to control whether users must press Ctrl + Alt + Delete before signing in to Windows 11. Three methods are available: the User Accounts tool (easiest), Local Security Policy (Pro editions only), or the Registry (advanced). Enabling this feature prevents malicious programs from displaying fake sign-in screens. Always sign in as an administrator to make these changes.

Categories:

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *

Exit mobile version