How to Fix Auto Login Checkbox is Missing in Windows 10

Table of Contents

In some cases, you want to use automatic login functionality in Windows 10. But, the checkbox Users must enter a user name and password to use this computer is missing in Windows 10.

Newer versions of Windows 10 come with a new Passwordless sign-in feature (More Info) which allows users to setup Windows Hello Face, fingerprint or PIN instead of traditional password.

So if you are not getting the above mentioned checkbox, it means passwordless sign-in feature is enabled in your device.

How to Fix Auto Login Checkbox is Missing in Windows 10

Method 1: Enable auto login checkbox using Registry Editor

You can using Registry Editor to restore “Users must enter a user name and password to use this computer” checkbox.

1. Type regedit in the search box then open Registry Editor.

How to Fix Auto Login Checkbox is Missing in Windows 10

2. Navigate to the following key:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device

In right-side pane, look for DevicePasswordLessBuildVersion DWORD. The value of this DWORD would be set to 2 in your device.

How to Fix Auto Login Checkbox is Missing in Windows 10

3. Double-click on DevicePasswordLessBuildVersion and change its value to 0.

How to Fix Auto Login Checkbox is Missing in Windows 10

4. That’s it. Now open netplwiz programs and you’ll get Users must enter a user name and password to use this computer checkbox back.

Note

If the checkbox doesn’t appear after editing Registry, restart your computer and it’ll appear now.

How to Fix Auto Login Checkbox is Missing in Windows 10

Method 2: Enable auto login checkbox using Command line

If you don’t want to modify Registry Editor manually or if you can’t see above mentioned key in Registry, you can run following command in PowerShell directly:

1. Right click on Windows Start icon then select Windows PowerShell Admin.

How to Fix Auto Login Checkbox is Missing in Windows 10

2. Copy then run the following command to show the auto login checkbox.

reg ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v DevicePasswordLessBuildVersion /t REG_DWORD /d 0 /f
PS C:\> reg ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v DevicePasswordLessBuildVersion /t REG_DWORD /d 0 /f
The operation completed successfully.

Leave a Comment

Required fields are marked *