3

I don't want to get the of the lock screen. If I hit Windows+L I want it to go directly to the lock screen. Instead, it goes to a background screen that I have to click or otherwise interact with to get to the lock screen - I can't just start typing my password! The same thing happens if I power up my computer out of sleep.

I have looked under Settings -> Lock Screen and I can see where I can change the picture for this background, but not how to skip this screen entirely.

I don't know what this extra background screen is called, but I want to get rid of it! How do I do this? I used to have it configured this way, but when I applied the Windows Anniversary Update yesterday it reverted to putting this annoying extra screen in the way.

7
  • 3
    The NoLockScreen registry edit should help. See y'days post on this topic How can I make Windows 10 show the password textbox at startup, rather than that picture with the time & date? - Super User
    – w32sh
    Commented Aug 3, 2016 at 18:02
  • 1
    Possible duplicate??
    – Moab
    Commented Aug 3, 2016 at 18:03
  • @w32sh I tried the registry answer you provided in that question, only to discover that key already exists and has a value of 1!
    – Michael
    Commented Aug 3, 2016 at 18:11
  • Interesting! The registry based policy (as well as the GPO setting) not working here after installing Anniversary update. I can confirm that.
    – w32sh
    Commented Aug 3, 2016 at 18:11
  • 1
    @w32sh That GPO stopped working in Home/Pro with the Anniversary update;, it's now an Enterprise/Edu GPO only. Commented Aug 3, 2016 at 18:25

2 Answers 2

1

There is a workaround to disable the Lock Screen in Anniversary Update builds, in any edition of Windows.

Create a Scheduled Task that runs the following command-line, or a batch/script that runs the following command:

reg.exe add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\LogonUI\SessionData /t REG_DWORD /v AllowLockScreen /d 0 /f

The idea is to reset the AllowLockScreen value data to 0 on these two trigger events:

  • Log on
  • Workstation unlock.

So you need to use multiple triggers for that task.

(or)

Download the Task XML from here: How to Disable the Lock Screen in Windows 10 Anniversary Update (1607)?

And use the Import Task option in Scheduler to create/import the task automatically.

Lock the workstation and unlock it. From the 2nd time onwards you shouldn't see the lock screen.

6
  • this only works partially. When you boot the system the lockscreen is still there, but when you lock the device (WIN+L) it works and I'm directly at the screen to enter my password/pin Commented Aug 5, 2016 at 15:01
  • Yes. Looks like there is no way to disable the initial lock screen (at startup). At startup, the system doesn't seem to use LockApp.exe. May be it uses a core module.
    – w32sh
    Commented Aug 5, 2016 at 15:07
  • may it helps to use registry to edit Image File Execution Options for LockScreen.exe and point to a dummy exe? Commented Aug 5, 2016 at 15:10
  • Debugger is ignored at startup. Both for lockapp.exe and lockapphost.exe. But debugger for lockapp.exe correctly runs when locking the workstation. FYI, I tried with a dummy executable like rundll32.exe as well as with a non-existent exe. Setting debugger for lockapphost.exe causes a hang when locking.
    – w32sh
    Commented Aug 5, 2016 at 15:11
  • Thank you!!! Also to note, from the linked article, you can also renamed the LockApp folder, which doesn't even require setting up a scheduled task.
    – Michael
    Commented Aug 5, 2016 at 16:20
1

In the Version 1607, you can't disable the LockScreen on Pro Editions, only on Education and Enterprise.

enter image description here

So setting the Registry key or GPO has no effect. Update to Enterprise if you are a business user or submit Feedback to bringt it back to Pro.

2
  • So... Microsoft basically removed this capability for me? Meaning now I have to go through an extra inconvenience every time I step away from my machine and come back? Are they trying to make my computer less secure by discouraging me from bringing up the lock screen? What is the reasoning behind removing a feature I was relying on to work more efficiently?
    – Michael
    Commented Aug 4, 2016 at 18:00
  • ask Microsoft why they did this nonsense. Use the feedback hub and provide feedback to MS. Commented Aug 5, 2016 at 3:45

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .