Enable auto sign-in on Windows 10

9,243

Solution 1

It was because my VM was part of a domain (an organization in Windows 10 parlance). Removing the machine from the domain ("disconnecting from the organization") made the checkbox reappear and allowed me to enable auto-login.

Solution 2

ok, if you make the following modification to your registry the option will be available again in netplwiz. Default setting is 2.

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device]
"DevicePasswordLessBuildVersion"=dword:00000000

0 = on
2 = off

Solution 3

You can use Autologon.exe (Sysinternals tool) or using registry keys:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
"AutoAdminLogon"="1"
"DefaultDomainName"="DOMAINNAME"
"DefaultUserName"="USERNAME"
"DefaultPassword"="PASSWORD"

Extracted from: http://www.sysadmit.com/2016/01/windows-configurar-autologin.html

Share:
9,243

Related videos on Youtube

Benjamin Hodgson
Author by

Benjamin Hodgson

Updated on September 18, 2022

Comments

  • Benjamin Hodgson
    Benjamin Hodgson over 1 year

    It's tedious to type my password every time I start my Windows 10 VM, especially since you can't paste a password into the box. I want to set up automatic login.

    Following the instructions here I tried to disable the "Users must enter a user name and password" option in netplwiz. But the option isn't there! It should be above the "users for this computer" list. Is there a setting I need to change to allow me to change the setting?

    enter image description here

  • Ramhound
    Ramhound almost 4 years
    This is absolutely false. Microsoft doesn’t go to the effort of making changes to the UI if you have performed a “clean install” or an “upgrade”. In reality there isn’t a difference between those two methods of installing Windows.