How to disable password on wakeup in Windows 10

Password serves to protect your system against unauthorized access. Even if you have set up auto login on power on, your Windows 10 might request a password on wake up from sleep or hibernation. So you will have to sign in every time your computer wakes up. If you don’t like this, here is how to disable password on wakeup in Windows 10 (after sleep or hibernation). 

How to disable password request on wakeup in Windows 10 using Settings

  1. Press Win+I to launch Settings.
  2. Click on AccountsWindows 10 settings - accounts
  3. Head to Sign-in options.
  4. Under Require sign-in select Neverrequire sign-in: never

How to disable password on wakeup in Windows 10 using command prompt

You can also turn off a sign-in request on wakeup using the command line if this is more convenient for you.

  1. Press Win+X.
  2. Launch the Command Prompt as admin: cmd as admin windows 10
  3. Copy and paste these lines into command line window and hit Enter after each one:
    powercfg /SETDCVALUEINDEX SCHEME_CURRENT SUB_NONE CONSOLELOCK 1
    powercfg /SETACVALUEINDEX SCHEME_CURRENT SUB_NONE CONSOLELOCK 1

The first one disables the password in battery mode. The second one – when plugged in.

That’s it! Your Windows 10 will never ask you to enter password on wakeup. And by the way, to turn it back on using the command line, type:

powercfg /SETDCVALUEINDEX SCHEME_CURRENT SUB_NONE CONSOLELOCK 0
powercfg /SETACVALUEINDEX SCHEME_CURRENT SUB_NONE CONSOLELOCK 0

Leave a Comment