How to Disable the Lock Screen on Windows 11 Pro and Home Editions
🔍 WiseChecker

How to Disable the Lock Screen on Windows 11 Pro and Home Editions

Quick fix: Windows 11 Home doesn’t expose this directly; Pro can use Group Policy. For both: add registry DWORD HKLM\SOFTWARE\Policies\Microsoft\Windows\Personalization\NoLockScreen = 1. Reboot. The lock screen image is skipped — boot goes directly to the sign-in screen.

Every boot or wake-from-sleep shows the lock screen first — that’s the image with date/time. You then click or press a key to reach the actual sign-in. The lock screen serves no security purpose; it’s just an extra step. Disabling skips it; sign-in screen appears directly.

Symptom: Want to skip Windows 11’s lock screen image and go directly to sign-in.
Affects: Windows 11 (and Windows 10) Home and Pro.
Fix time: ~3 minutes.

ADVERTISEMENT

What causes this

The lock screen is decorative — an image with widgets and the time. It’s shown before the sign-in screen at every boot, wake, and Win+L lock. Some users like it as a calm landing point; others see it as friction. Disabling routes directly to the sign-in screen, saving one click.

Method 1: Registry edit (works on both Home and Pro)

The universal route.

  1. Open Registry Editor.
  2. Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization. If the Personalization key doesn’t exist, create it: right-click Windows → New → Key.
  3. Inside Personalization: right-click empty space → New → DWORD (32-bit) Value. Name it NoLockScreen.
  4. Double-click. Set value to 1. Click OK.
  5. Close Registry Editor. Reboot.
  6. Boot now goes directly to sign-in. Win+L still locks but jumps straight to sign-in.
  7. To revert: set NoLockScreen back to 0 or delete the value. Reboot.

This works on Home, Pro, and Enterprise.

ADVERTISEMENT

Method 2: Group Policy (Pro/Enterprise)

The GUI path for Pro.

  1. Open Group Policy Editor (gpedit.msc).
  2. Navigate to Computer Configuration → Administrative Templates → Control Panel → Personalization.
  3. Find Do not display the lock screen. Double-click.
  4. Set to Enabled. Click OK.
  5. Run gpupdate /force in Terminal (Admin) to apply.
  6. Reboot.
  7. To revert: set back to Not Configured or Disabled. Reboot.

This is the right path for Pro/Enterprise.

Method 3: Disable via Task Scheduler (alternative)

For users who want to keep lock screen at Win+L but skip it at boot.

  1. Open Task Scheduler.
  2. Right-click Task Scheduler LibraryCreate Task.
  3. General tab: name Skip Lock Screen at Boot. Tick Run with highest privileges.
  4. Triggers tab: At log on.
  5. Actions tab: Start a program. Program: powershell. Arguments: -Command "Add-Type 'using System.Runtime.InteropServices; public class W { [DllImport("user32.dll")] public static extern bool SendMessage(IntPtr h, uint Msg, IntPtr w, IntPtr l); }'; [W]::SendMessage(0xFFFF, 0x112, 0xF170, 2).
  6. This sends a wake/skip message to bypass lock screen presentation at logon.
  7. Click OK. Test by rebooting.
  8. Trade-off: third-party workaround; the registry method (Method 1) is cleaner. Use only if registry edits are blocked.

This is a workaround for specific scenarios.

How to verify the fix worked

  • Reboot. No lock screen image; sign-in screen appears immediately.
  • Wake from sleep: same behavior.
  • Win+L: lock applies, but unlocks via sign-in directly (lock screen still skipped).

If none of these work

If lock screen still appears despite registry edits: Multiple registry locations: check also HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\LogonUI\SessionData for stuck session settings. Group Policy overrides: registry values are overridden by enforced Group Policy. Check via gpresult /h C:\result.html. For Microsoft Account-only sign-in: lock screen sometimes ties to MSA sign-in flow. Switching to PIN sign-in may skip lock screen anyway. For tablet/2-in-1 PCs: tablet orientation may force lock screen. Different setting via Settings → Accounts → Sign-in options. For Windows Hello (face/fingerprint): Hello detection happens at lock screen. Disable lock screen also requires re-configuring Hello. Settings → Accounts → Sign-in options → Windows Hello Face/Fingerprint → manage.

Bottom line: Registry: HKLM\SOFTWARE\Policies\Microsoft\Windows\Personalization → NoLockScreen = 1. Reboot. Lock screen image is skipped; sign-in appears directly.

ADVERTISEMENT