Created
August 3, 2015 02:46
-
-
Save NickCraver/fd5a5f853e6258e1bc42 to your computer and use it in GitHub Desktop.
Disable the lock screen (the one before the password prompt) in Windows 10 for faster login and not dropping the first password character.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Disable the Lock Screen (the one before password prompt - to prevent dropping the first character) | |
If (-Not (Test-Path HKLM:\SOFTWARE\Policies\Microsoft\Windows\Personalization)) { | |
New-Item -Path HKLM:\SOFTWARE\Policies\Microsoft\Windows -Name Personalization | Out-Null | |
} | |
Set-ItemProperty -Path HKLM:\SOFTWARE\Policies\Microsoft\Windows\Personalization -Name NoLockScreen -Type DWord -Value 1 -Force |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment