Saturday, July 11, 2026

How to Create a Hidden User Account in Windows 10 and 11

Windows 11 login screen showing a hidden user account with a security lock icon

How to Create a Hidden User Account in Windows 11

Security Guide

🔐 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 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.

Windows login screen displaying visible user profiles while a hidden local account remains suppressed from the sign-in interface
Works on both Windows 10 and Windows 11. The Registry location, administrative commands, and account management process covered in this guide are effectively the same on both operating systems, as long as you're using an administrator account.

💡 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.

🧪
Safe software and driver testing Create a separate hidden account where you can install applications, test browser extensions, experiment with scripts, or try new drivers without affecting your primary Windows profile or personal data.
🔑
Emergency backup administrator access Keeping a hidden administrator account available can be invaluable if your main profile becomes corrupted, locked out, or refuses to load, giving you a reliable recovery option when you need it most.
👤
Enhanced privacy on shared systems On family PCs, office computers, or any device used by multiple people, hiding your account keeps it out of sight and discourages casual login attempts from other users.
💼
Separate work and personal environments Maintain completely independent Windows environments with different desktop layouts, browser profiles, installed software, saved credentials, and document libraries—all on the same computer.

🛠️ 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.

Windows Run dialog configured to launch elevated Command Prompt with administrator privileges
💡 New to Command Prompt? Don't worry—the black window that opens is simply Windows' built-in command-line tool. Every command in this guide will be entered there.
🔐 Security tip: Avoid obvious usernames like 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.

net user [USERNAME] [PASSWORD] /add

Example:

net user HiddenProfile SecurePass2026 /add

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.

⚠️ Using spaces or special characters in your password?
Place the password inside quotation marks to avoid syntax errors.

Example: net user HiddenProfile "S3cure! P@ss#2026" /add
🔐 Use a strong password. Combine uppercase and lowercase letters, numbers, and symbols. Even though this account will eventually be hidden from the sign-in screen, it should still be protected with a unique, difficult-to-guess password.
💡 Best practice: Give the account a name that blends in naturally instead of something that immediately reveals its purpose. Generic names like Admin, Backup, or TestUser are easier for other administrators to notice.
Administrator Command Prompt creating a new Windows local user account using the net user command

👁️ 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.

reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList" /v [USERNAME] /t REG_DWORD /d 0 /f

Example:

reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList" /v HiddenProfile /t REG_DWORD /d 0 /f

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
Administrator Command Prompt executing Registry command to hide a local Windows user account from the sign-in screen
🔎 Technical note: If the 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.

💡 Want to make the account visible again?
Run the same command, but change /d 0 to /d 1.

0 = Hidden
1 = Visible
🔐 Remember: This setting only controls whether the account appears on the login screen. It doesn't disable the account, change its permissions, or prevent administrators from finding it using Windows management tools.

🔓 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.

Windows sign-in screen with Other user option selected for manual login to a hidden local Windows account

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:

runas /user:[COMPUTER_NAME]\[USERNAME] explorer

Example:

runas /user:MyPC\HiddenProfile explorer
🔍 What does this command do? It opens a new File Explorer window using the hidden account's credentials. It does not switch Windows users or load the hidden account's desktop, taskbar, or complete profile.
Windows Run dialog configured with runas command to launch File Explorer under hidden account permissions
🔍 Need your computer name? Open Command Prompt, type 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.

⚠️ Keep in mind: 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.
💡 Best for: Running individual applications, testing user permissions, or accessing files without signing out of your current Windows 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.

net localgroup administrators [USERNAME] /add
net localgroup administrators HiddenProfile /add

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
💡 PowerShell alternative: On modern versions of Windows, you can achieve the same result with: Add-LocalGroupMember -Group "Administrators" -Member "[USERNAME]"
🚨 Security warning: Administrator accounts have unrestricted access to Windows. Only grant elevated privileges if they're truly necessary, and always protect the account with a strong, unique password. A hidden administrator account is still an administrator account.

🗑️ 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:

C:\Users\[USERNAME]

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

net user [USERNAME] /delete
net user HiddenProfile /delete

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.

💡 Good practice: After deleting the account, review the C:\Users folder and remove any leftover profile data only after confirming that you no longer need it.
⚠️ Advanced cleanup: If you want to remove every trace of the account, it's worth checking a few additional locations after deleting it. Depending on your Windows configuration, some profile data or references may remain behind.

Review the following if necessary:
C:\Users\[USERNAME]
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList
Scheduled 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.
💡 Good housekeeping: Before deleting any remaining profile folders or Registry entries, make sure you've backed up any files you may need. Once they're removed, recovering them can be difficult.

❓ 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 Prompt
Computer Management → Local Users and Groups
• PowerShell user management commands
• Browsing C:\Users in File Explorer
• Registry Editor (regedit)

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.

Windows Computer Management console showing Local Users and Groups where hidden accounts remain visible to administrators

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.

net user [USERNAME] NEWPASSWORD

Example:

net user HiddenProfile NewSecurePass2026

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
📝 Best practice: Store the account credentials in a trusted password manager such as Bitwarden, 1Password, or KeePass to avoid future recovery problems.

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 SpecialAccounts configuration

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.

⚖️ Responsible use notice:
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.
🎉 You're all set. You now know how to create, hide, access, manage, and remove a hidden Windows user account using nothing more than Windows' built-in tools. Used responsibly, hidden accounts can be a practical way to organize shared PCs, maintain a backup administrator account, or keep a separate workspace out of the standard sign-in screen.

💬 Comments

Loading comments…

Ευάγγελος
✍️ Evaggelos
Creator of LoveForTechnology.net — an independent and reliable source for technology guides, tools, and practical solutions. Every article is based on personal testing, documented research, and care for the everyday user. Here, technology is presented simply and clearly.

RELATED TOPICS