• Home
  • Content
  • RSS
  • Log in

Password Recovery

Provide useful password recovery tricks, guides and software
  • Home
  • Password Recovery Bundle
  • Reset Windows Password
  • Product Key Finder
  • Protect My Folders

2 Options to Create a Hidden Administrator Account in Windows

July 24, 2017 updated by Admin Leave a reply »

Is it possible to create a hidden account in our home computer? If you share a computer, you might not want everyone who uses your PC to see your username at the login screen. In this tutorial we’ll show you 2 options to create a hidden administrator account in Windows 10 / 8 / 7 from the Command Prompt.

Option 1: Create a Hidden & Disabled Administrator Account

Every Windows installation has a set of predefined accounts, including the built-in Administrator account. By default, the built-in Administrator account is disabled so it does not appear on the login screen at startup. Here’s how you can create a similar hidden administrator account from Command Prompt:

  1. Open the Command Prompt with administrative rights.
  2. Copy and paste the code below in the Command Prompt. Replace 123 with your own password and pcunlocker with your administrator name.

    net user pcunlocker 123 /add
    net localgroup Administrators pcunlocker /add
    net user pcunlocker /active:no

    create-disabled-administrator-in-windows

  3. Once you press Enter, a new administrator account will be created but it is set to be disabled. A disabled user will not show up at Windows login screen until you enable it.

If you want to unhide a disabled account, run the following command at Command Prompt:

net user pcunlocker /active:yes

Option 2: Create a Hidden & Enabled Administrator Account

  1. Open the Command Prompt with administrative rights.
  2. Copy and paste the following code in the Command Prompt. Replace 123 with your own password and pcunlocker with your administrator name.

    net user pcunlocker 123 /add
    net localgroup Administrators pcunlocker /add
    reg add "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\Userlist" /v pcunlocker /t REG_DWORD /d 0 /f

    create-hidden-administrator-account-in-windows

  3. This will create a hidden administrator account which is invisible in both your Windows login screen and Fast User Switch menu, though you’ll still be able to manually login via remote desktop.

This method is useful if you want to create a hidden account for remote access, but don’t let it show up on the login screen. If you want to unhide such a hidden account, just run this command at Command Prompt:

reg add "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\Userlist" /v pcunlocker /t REG_DWORD /d 1 /f

That’s it!

Related posts:

  • How to Enable or Activate Windows Administrator Account without Logging In
  • How to Enable the Hidden Guest Account in Windows 10
  • How to Enable / Disable Hidden Administrator Account in Windows 8/7/Vista
  • 3 Ways to Create New Administrator Account in Windows 10

  • Previous Post: 4 Ways to Launch Administrative Tools in Windows 10
  • Next Post: How to Check If Your Disk Uses MBR or GPT Partition Style

Posted in Tips & Tricks, Windows 10, Windows 7, Windows 8, Windows Vista, Windows XP

Tags: create hidden administrator account in windows create hidden user windows 10 hidden user account windows 10

    • Subscribe Subscribe to my blogs feed
    • Previous Entry 4 Ways to Launch Administrative Tools in Windows 10
    • Next Entry How to Check If Your Disk Uses MBR or GPT Partition Style

Back to Top

© 2025 top-password.com. Proudly powered by WordPress.