Hide or Disable User Account on Windows sign in screen
Method 1: Using Registry Editor (Hides without disabling)
This method hides the user but keeps the account active, allowing login by typing the username.
- Press
Win + R, typeregedit, and press Enter to open the Registry Editor. - Navigate to
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon. - Right-click
Winlogon, select New > Key, and name itSpecialAccounts. - Right-click
SpecialAccounts, select New > Key, and name itUserList. - In the
UserListpane, right-click an empty space, select New > DWORD (32-bit) Value. - Name the new DWORD the exact username you want to hide (e.g.,
MyLocalUser). - Double-click the new DWORD and set its Value data to
0(zero). - Restart your PC to see the change.
Method 2: Disabling the Account (Removes from login)
This completely disables the account, preventing login.
- Using Local Users and Groups:
- Press
Win + R, typelusrmgr.msc, and press Enter (requires Admin). - Click Users, find the account, right-click it, and select Properties.
- Check the "Account is disabled" box and click Apply.
- Press
- Using Command Prompt (Admin):
- Open Command Prompt as Administrator.
- Type
net user "Username" /active:no(replace "Username" with the actual name) and press Enter.
To Show a Hidden Account (Registry Method)
- Change the DWORD value in the
UserListkey from0to1, or delete the entry entirely.