🔐 At first glance, the Windows sign-in screen seems straightforward: every user account you've created appears in a neat list, ready to be selected. What many people don't realize is that Windows also includes a built-in feature that lets you hide specific accounts from that list without deleting or disabling them.
This can be incredibly useful if you want to keep an administrator account out of sight, create a maintenance profile that only you know about, reduce clutter on a shared family PC, or simply add an extra layer of privacy. The account continues to work normally—it just won't be visible on the login screen.
The best part is that you don't need third-party utilities, registry "cleaners," or complicated tweaks. With a simple built-in Windows configuration, you can make a user account effectively invisible while still allowing authorized access whenever it's needed.
In this guide, we'll explain how the feature works, when it's worth using, its limitations, and the safest way to enable or reverse it on modern versions of Windows. ⬇️
📋 What's in this guide
❓ What exactly is a hidden user account?
Think of it as a private Windows profile that works like any other user account but stays hidden from the standard sign-in screen. It has its own desktop, files, applications, settings, permissions, and personal environment—you simply won't see it listed alongside the other users when Windows starts.
From a technical perspective, a hidden account is usually a regular local Windows account whose visibility has been disabled through a built-in Windows setting, most commonly by modifying a Registry value. The account itself isn't disabled or restricted; Windows simply omits it from the graphical user selection screen.
It's important to understand what this feature does—and what it doesn't. Hiding an account improves privacy and helps keep the login screen tidy, but it is not a security feature. It doesn't encrypt your files, strengthen your password, or prevent administrators from discovering the account.
Anyone with administrator privileges can still identify hidden accounts using built-in Windows tools such as:
- Command Prompt (
net user) - Computer Management
- Registry Editor
- PowerShell user management commands
Bottom line: A hidden account is best viewed as a privacy and organization feature. It's excellent for reducing visibility on the sign-in screen, but it should always be combined with strong passwords and standard Windows security practices.
💡 When would you actually need one?
Hidden user accounts aren't just for IT professionals. In everyday use, they can solve several practical problems while helping you keep your Windows installation better organized.
🛠️ Step 1 — Create the account
The first step is to create a new local Windows user account. The easiest and fastest way to do this is by using Command Prompt with administrator privileges.
▶️ Open Command Prompt as Administrator
1️⃣ Press Windows + R to open the Run dialog.
2️⃣ Type cmd.
3️⃣ Press Ctrl + Shift + Enter to launch Command Prompt as an administrator.
4️⃣ When the User Account Control (UAC) window appears, click Yes.
Admin, Backup, or HiddenUser. Choosing a less predictable name makes the account harder to identify at a glance.
👤 Create the new local user account
Once Command Prompt is open, enter the following command. Replace [USERNAME] and [PASSWORD] with the username and password you want to use.
Example:
When you run this command, Windows automatically:
- Creates a new local user account
- Assigns the password you specify
- Adds the account to Windows' local user database
- Makes the account ready to use immediately
Press Enter. If everything is correct, Windows will display a message confirming that the command completed successfully.
Place the password inside quotation marks to avoid syntax errors.
Example:
net user HiddenProfile "S3cure! P@ss#2026" /add
Admin, Backup, or TestUser are easier for other administrators to notice.
👁️ Step 2 — Hide it from the login screen
Now that the account has been created, it still behaves like any other Windows profile and will appear on the sign-in screen. The next step is to hide it by adding a Registry value that controls whether the account is displayed during login.
🔒 Use the Registry command to hide the account
In the same elevated Command Prompt window, run the command below. Replace [USERNAME] with the exact username you created in the previous step.
Example:
When executed, this command automatically:
- Creates the required Registry path if it doesn't already exist
- Adds a Registry entry for the selected username
- Creates the value as a
REG_DWORD - Sets the value to
0, instructing Windows not to display the account on the sign-in screen
SpecialAccounts\UserList Registry key isn't already present, Windows creates it automatically when you run the command. In most cases, there's no need to open Registry Editor or create the path manually.
After entering the command, press Enter. If it completes successfully, restart your computer so Windows reloads the updated Winlogon configuration.
Once the PC restarts, the account will continue to function normally, but it will no longer be listed on the standard Windows sign-in screen.
Run the same command, but change
/d 0 to /d 1.0 = Hidden1 = Visible
🔓 How to sign in to the hidden account
Once the account is hidden, it no longer appears in the list of available users on the Windows sign-in screen. That doesn't mean it's inaccessible—you simply need to sign in manually using the account's credentials.
Depending on what you want to do, you can either log into the hidden account normally or launch a specific application under its credentials without leaving your current Windows session.
🖥️ Method 1 — Manual sign-in from the Windows lock screen
This is the recommended method whenever you need full access to the hidden account and its complete desktop environment.
1️⃣ At the Windows sign-in screen, select Other user (usually located in the bottom-left corner).
2️⃣ Type the username of the hidden account.
3️⃣ Enter the account password and sign in.
Although the account isn't listed on the login screen, Windows will still authenticate it as long as you enter the correct username and password.
After signing in, you'll have access to a completely separate Windows environment, including:
- Its own desktop and workspace
- Separate documents and user folders
- Independent browser profiles
- Individual application settings
- Its own user permissions
- A separate user Registry hive
Best for: Recovery access, software testing, privacy, or maintaining a dedicated Windows workspace.
⌨️ Method 2 — Run a program as the hidden user without switching accounts
If you only need to open a specific application using the hidden account's credentials, Windows includes a built-in command called runas.
1️⃣ Press Windows + R.
2️⃣ Enter the following command:
Example:
hostname, and press Enter. Windows will display your PC name instantly.
3️⃣ Press Enter.
4️⃣ Type the hidden account password when prompted.
5️⃣ Windows will launch File Explorer (or the application you specified) using that account's permissions.
Note: Your password won't appear on the screen while you type. This is normal Windows security behavior.
runas starts only the selected application under another user's credentials. It doesn't open a new desktop session or switch to the hidden account.
🎯 Grant administrator privileges (optional)
When you create a new hidden account, Windows assigns it standard user permissions by default. That's sufficient for everyday use, but if you plan to use the account for system maintenance, troubleshooting, or emergency recovery, you can add it to the local Administrators group.
After running the command, the account will gain administrator privileges, allowing it to:
- Install software, drivers, and Windows features
- Edit the Windows Registry and change advanced system settings
- Create, modify, and remove local user accounts
- Perform system recovery and advanced troubleshooting
- Manage Windows services, security settings, and system updates
Add-LocalGroupMember -Group "Administrators" -Member "[USERNAME]"
🗑️ How to delete the hidden account
If you no longer need the hidden account, you can remove it using a single Command Prompt command. Before doing so, make sure you've backed up any files you want to keep.
⚠️ Before deletion
Check the account's profile folder and copy any important data stored in:
Common files worth saving include:
- Documents
- Desktop files
- Browser profiles and bookmarks
- Application settings
- Downloads
Once the account is deleted, signing in will no longer be possible, and recovering its data may be considerably more difficult.
🗑️ Delete the account
Running this command will:
- Remove the local Windows user account
- Prevent any future sign-ins with that account
- Revoke its authentication credentials
- Make the hidden account Registry entry unnecessary
Keep in mind: Deleting the account doesn't always remove its profile folder automatically. In many cases, C:\Users\[USERNAME] and some configuration files remain on the drive until you remove them manually.
C:\Users folder and remove any leftover profile data only after confirming that you no longer need it.
Review the following if necessary:
C:\Users\[USERNAME]HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileListScheduled Tasks and any cached credentials associated with the account.
You can also remove the Registry entry that hides the account by running:
reg delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList" /v [USERNAME] /f
This step isn't strictly required once the account has been deleted, but it helps keep the Registry clean by removing the unused visibility entry.
❓ Frequently asked questions
Can someone still find the account even if it’s hidden?
Yes. Hiding a Windows account simply removes it from the standard sign-in screen—it doesn't make the account invisible to administrators or provide additional security.
Anyone with administrator privileges can still identify the account using built-in Windows tools such as:
net user in Command PromptC:\Users in File Explorerregedit)Bottom line: A hidden account improves privacy by keeping it off the login screen, but it shouldn't be treated as a security feature. Strong passwords and good account management remain essential.
What happens if I forget the hidden account password?
If you still have access to another administrator account on the same PC, resetting the password is quick and straightforward.
Example:
After running the command, the old password is immediately replaced with the new one.
If no administrator account is available, recovery becomes more challenging and may require:
- Windows Recovery Environment (WinRE)
- Offline password recovery or reset tools
- System repair or recovery procedures
- Advanced recovery utilities
Does this method work on both Windows 10 and Windows 11?
✅ Yes. The commands and Registry settings used in this guide work on both Windows 10 and Windows 11 because they rely on long-established Windows account management features that Microsoft continues to support.
The process uses built-in Windows components such as:
- Command Prompt
net user- Registry Editor
- Winlogon
SpecialAccountsconfiguration
Although Windows receives regular interface updates, these administrative tools and Registry paths have remained largely consistent across both operating systems.
Do I need third-party software?
❌ No. Everything described in this guide can be done using Windows' own built-in administrative tools.
You'll only need:
- Command Prompt running as Administrator
- Built-in Registry commands
- Administrator permissions (UAC approval)
- Optional PowerShell commands
There's no need to install third-party software, Registry cleaners, or paid utilities.
Is a hidden account safer than a normal account?
Not by itself. A hidden account improves privacy by keeping it off the sign-in screen, but it doesn't make the account inherently more secure.
Your overall security still depends on:
- Using a strong, unique password
- Limiting administrator privileges where possible
- Encrypting the device with BitLocker (where available)
- Following good account and access management practices
Think of a hidden account as a convenience and privacy feature—not a replacement for proper Windows security.
This guide is provided for legitimate educational, administrative, and privacy purposes only. Use these techniques only on computers you own or systems you're explicitly authorized to manage. Attempting to hide or manage accounts on devices without permission may violate local laws, workplace policies, or cybersecurity regulations.
Post a Comment