Skip to content
Follow
Windows

How to Hide Users on Windows 11 Sign-in Screen

Richard
Written by
Richard
Aug 2, 2023 Updated Jul 11, 2026 3 min read
How to Use Sticky Notes in Windows 11
How to Use Sticky Notes in Windows 11

You hide users on the Windows 11 sign-in screen by editing the Windows Registry, specifically the `🗝️HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon` key, to disable those user accounts from appearing. This prevents unauthorized access by making specific user accounts invisible.

Disabling user visibility on the login screen is a security measure that prevents unauthorized individuals from seeing available account names, thus protecting your PC from unwanted access.

The Registry Editor technique affects local user accounts, not Microsoft accounts. You access the Registry Editor to implement this change, allowing you to hide accounts like the default Administrator if the Administrator account is showing.

⚡ Quick Answer

Edit the Windows Registry by navigating to WinlogonSpecialAccountsUserList and creating a DWORD value for the username, setting its data to 0. This hides the user from the sign-in screen without deleting data.

Why Hide Users on 🪟 Windows 11?

You can hide specific user accounts from the Windows 11 sign-in screen to make your computer more private and secure. This prevents unwanted people from seeing which accounts are available to log in, adding a basic layer of security by keeping certain usernames out of sight. The hidden account still works normally, but you’ll need to know its name to sign in.

Hiding usernames on the Windows 11 sign-in screen adds a layer of security by obscuring the list of available accounts on your system, making it harder for unauthorized individuals to see who might be on your computer.

User accounts hidden from the Windows 11 sign-in screen remain fully functional but no longer appear visually. You must type the username manually to log in to these hidden accounts.

Before You Begin: Safety First

⚠️Warning
Editing the Windows Registry is powerful. A mistake can cause system issues. Always create a System Restore point before proceeding. This allows you to revert your system to a working state if something goes wrong.

Method 1Using the Registry Editor (Advanced)

Using the Registry Editor is an advanced way to hide users on Windows 11, letting you make specific changes to how Windows behaves. This method involves editing a special Windows file that controls system settings. While it’s powerful, you need to be careful when making changes in the Registry Editor as mistakes can affect your computer’s performance.

  1. Press Win + R, type regedit, and press Enter.
  2. Navigate to: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon
  3. If the SpecialAccounts key does not exist under Winlogon, right-click Winlogon, select New > Key, and name it SpecialAccounts.
  4. Inside SpecialAccounts, create another key named UserList.
  5. Right-click in the right pane of UserList, select New > DWORD (32-bit) Value.
  6. Name the DWORD exactly as the username you wish to hide (e.g., GenericUser).
  7. Double-click the new DWORD and set the Value data to 0.

Show or hide user list on sign in screen in Windows 11
Show or hide user list on sign in screen in Windows 11

Downloadable Registry File

You can automate this by saving the following code as a .reg file:

💻Code
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList]
"GenericUser"=dword:00000000

Method 2Using Group Policy Editor (Pro/Enterprise Only)

📝Good to Know
If you use Windows 11 Pro or Enterprise, you can use gpedit.msc. [Admin privileges required]
  1. Press Win + R, type gpedit.msc, and hit Enter.
  2. Go to Computer Configuration > Windows Settings > Security Settings > Local Policies > Security Options.
  3. Find Interactive logon: Do not display last signed-in and set it to Enabled.

Show or hide user list on sign in screen in Windows 11
Show or hide user list on sign in screen in Windows 11

Summary

To hide users on Windows 11, you can use tools like the Registry Editor to keep your sign-in screen tidy and secure.

Does hiding a user account delete the data inside it?

No, hiding a user account on Windows 11 does not delete any of its files or data; the account simply becomes hidden from the sign-in screen.

Can I still log into a hidden account?

Yes, you can still log into a hidden account. Because the account is not deleted, it remains active. When you reach the sign-in screen, you will need to select the option to sign in with a different user and manually type the exact username and password to gain access.

Why does the registry path not exist on my 🪟 Windows 11 version?

If a registry path like SpecialAccounts does not exist, it simply means the key has not been created yet. Windows does not create these keys by default. You can safely create the keys manually by right-clicking the parent folder and selecting New Key to build the required path structure.

Was this guide helpful?

100% of readers found this helpful (1 votes)

Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to View All User Accounts in Windows 11
Windows How to View All User Accounts in Windows 11
How to Show or Hide the Lock Screen Background on the Sign-in Screen in Windows 11
Windows How to Show or Hide the Lock Screen Background on the Sign-in Screen in Windows 11
How to Turn On or Off the Lock Screen in Windows 11
Windows How to Turn On or Off the Lock Screen in Windows 11
How to Turn On or Off Lock Screen Background Motion in Windows 11
Windows How to Turn On or Off Lock Screen Background Motion in Windows 11

2 Comments

Leave a Comment

Your email address will not be published. Required fields are marked *