0XC0000063

Fix 0xC0000063: The Specified Account Already Exists

Windows Errors Beginner 👁 7 views 📅 Jun 20, 2026

This error means Windows already has an account with that username. Usually happens when you try to create an account that already exists or when a domain join fails. Here's how to fix it.

Cause #1: The Account Already Exists (Most Common)

I know this error can be confusing—you're trying to create a new user account, and Windows tells you it already exists. But it's telling the truth. The most common reason for the 0xC0000063 error is that the account name you're using is already taken by another account on the system. This happens more often than you'd think, especially if you have multiple users with similar names or if you're re-adding a deleted user.

Here's how to check and fix it:

  1. Press Windows + X and select Computer Management.
  2. Go to Local Users and Groups > Users. If you don't see this option, you're on Windows Home edition. Jump to the command line fix below.
  3. Look for the username you're trying to create. If it's there, right-click and delete it, or rename it (right-click > Rename).
  4. If the account is built-in (like Guest or Administrator), don't delete it—just pick a different name for your new account.

If you can't see Local Users and Groups, open Command Prompt as Admin and run:

net user

This lists all user accounts. If you see the name you want, delete it with:

net user [username] /delete

Replace [username] with the actual name. For example: net user johnsmith /delete. Then try creating your account again. This fix works 90% of the time.

Cause #2: Hidden or Disabled Accounts from Previous Installs

Sometimes the account isn't visible in the user list, but it's still there—stuck in the registry after a failed install or incomplete uninstall. This tripped me up the first time too. It usually happens after you uninstall a program that created a service account, or when a Windows update partially renames a user profile.

Here's how to find and remove these ghost accounts:

  1. Open Registry Editor (Windows + R, type regedit, press Enter).
  2. Navigate to:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList
  3. Look for a key with a long string of numbers and letters—that's a user profile SID. Click each one and check the ProfileImagePath value on the right. If it matches the username you're trying to create, you found the ghost.
  4. Back up the key first (right-click the key > Export). Then delete the entire key.

Warning: Don't delete the built-in accounts like Administrator or Default. Only delete keys that clearly match your problem username. If you're not sure, don't touch it—ask someone more experienced.

After deleting the key, restart your PC and try creating the account again. I've seen this fix work on Windows 10 version 22H2 and Windows 11 24H2.

Cause #3: Domain Join Conflicts (Advanced)

If you're joining a domain and seeing 0xC0000063, it means the domain controller already has an account with that name. This is rare for home users but common in offices with Active Directory. The trigger is often a computer that was removed from the domain but not properly cleaned up on the server side.

To fix this, you need admin access to the domain server:

  1. On the domain controller, open Active Directory Users and Computers.
  2. Go to the Computers container or the OU where the account lives.
  3. Find the computer name that matches your error. Right-click it and select Delete.
  4. Back on the local machine, open Command Prompt as Admin and run:
    netdom remove [computername] /domain:[domainname] /force
  5. Reboot the local PC and try joining the domain again.

If you don't have access to the domain controller, you'll need to ask your IT admin to do step 1–3. Tell them the exact computer name and that you're getting error 0xC0000063. They'll know what to do.

Quick-Reference Summary Table

Cause Fix Difficulty
Account name already taken Delete or rename the existing account via Computer Management or net user Beginner
Hidden account in registry Delete the profile SID key from ProfileList in Registry Editor Intermediate
Domain join conflict Remove the computer object from Active Directory, then rejoin Advanced

If none of these fix it, check that you're not trying to create an account with a reserved name like SYSTEM or LOCAL SERVICE. Also make sure you're logged in as an administrator—standard users can't create new accounts. And if you're still stuck, try creating the account in Safe Mode by pressing F8 during boot and selecting Safe Mode with Networking. I've seen that bypass weird conflicts a few times.

Was this solution helpful?