How to disable the Windows swipe-away screen lock, without disabling the password?
--------------------------------------------------
Become or hire the top 3% of the developers on Toptal https://topt.al/25cXVn
--------------------------------------------------
Track title: CC M Beethoven - Piano Sonata No 3 in C 3
--
Chapters
00:00 Question
01:07 Accepted answer (Score 38)
03:12 Answer 2 (Score 1)
03:31 Thank you
--
Full question
https://superuser.com/questions/497736/h...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#windows10 #windows8 #windows81
#avk47
Become or hire the top 3% of the developers on Toptal https://topt.al/25cXVn
--------------------------------------------------
Track title: CC M Beethoven - Piano Sonata No 3 in C 3
--
Chapters
00:00 Question
01:07 Accepted answer (Score 38)
03:12 Answer 2 (Score 1)
03:31 Thank you
--
Full question
https://superuser.com/questions/497736/h...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#windows10 #windows8 #windows81
#avk47
ACCEPTED ANSWER
Score 39
Yes, you can disable the lock screen without disabling authentication, using the Local Group Policy Editor. Here's how to do it:
- Press Win+R
- Type
gpedit.msc
(runs Local Group Policy Editor) - Navigate to: Computer Configuration > Administrative Templates > Control Panel > Personalization
- Enable the setting: Do not display lock screen
If you do not own the "Pro" version of Windows 8/8.1/10 then you do not have access to the policy editor. You can still edit the policy, but you need to go through regedit instead. It's only slightly more complicated that way:
- Press Win+R
- Type
regedit
(runs Registry Editor) - Find the key:
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization
Personalization
May not exist underWindows
, so right click its label and select New > Key to create it
- Right click on
Personalization
and select New > DWORD (32-bit) Value - Name the new value
NoLockScreen
- Now Right Click > Modify the new DWORD and enter
1
for the Data Value
Now, when you press Win+L, you'll be presented with the password input screen instead of the lock screen.
Thanks to Xandy in the comments for this Registry edit
ANSWER 2
Score 1
For the lazy people of the world this can be run with PowerShell:
$Key = "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization"
If ( -Not ( Test-Path "Registry::$Key")){New-Item -Path "Registry::$Key" -ItemType RegistryKey -Force}
Set-ItemProperty -path "Registry::$Key" -Name "NoLockScreen" -Type "DWORD" -Value 1