Windows设置开机自动登录

远程办公环境下,Windows开启通电开机和开机自动登录尤为方便。

  1. 运行框输入netplwiz或者Control Userpasswords2,弹出窗口里,去掉勾选【要使用本计算机,用户必须输入用户名和密码】。

  2. 较新的系统,取消了这一选项,可以通过修改注册表实现直接修改或使得该选项显现。

  3. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device];"DevicePasswordLessBuildVersion"=dword:00000002
    这个选项改成0,免输密码登录选项就回来了。

  4. Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
    "DefaultUserName"="Administrator"
    "AutoAdminLogon"="1"
    "DefaultPassword"="your_password"

参考链接:
https://www.zhihu.com/question/36628542
https://www.sysgeek.cn/auto-login-windows-10/

本文链接:

https://ma.ge/archives/556.html