Changing the user folder name on Windows 11 is possible, but the process isn't as simple as it is for renaming a regular folder. The profile folder inside C:\Users is linked to your account settings, applications, and system configuration. This means that Microsoft does not provide a direct rename option because any change that doesn't use the proper method will destroy all the pathing on your system. So follow along as we guide you through the proper way to rename the User folder on Windows 11.

Takeaways:

  1. What's the easiest way to rename your user folder on Windows 11?
  2. Why can't I change my user folder name on Windows 11?

How to Change Your User Folder Name on Windows 11

There are two ways to change the user folder name:

  1. Create a new account with the correct folder name and move your files
  2. Rename the profile folder manually through the Registry

The first method is the safest and recommended option. The second method is more advanced and can cause problems if performed incorrectly. Skip option 2 unless you're looking for more work and drama.

Why Windows Uses a User Profile Folder

Whenever you create a user account on Windows 11, the system automatically creates a profile folder inside the C:\Users directory. This folder stores your desktop files, downloads, documents, application settings, and other personal data. The folder name is usually based on the first few characters of the account name or Microsoft account email used during setup. If you later want a different folder name, Windows does not automatically update it.

OPTION 1: Create a New Account

The safest way to change the folder name is to create a new local administrator account using the exact name you want for the profile folder.

  • Open Settings
  • Click Accounts
  • Open Other users
  • Click Add account

How to Change Your User Folder Name on Windows 11

  • Select I don’t have this person’s sign-in information
  • Click Add a user without a Microsoft account
  • Enter the new account name you want to use
  • Skip the password if desired
  • Click Next

Windows will now create a new profile folder using the new account name.

Change the Account Type to Administrator

After creating the account:

  • Select the new account
  • Click Change account type
  • Choose Administrator

Change Your User Folder Name on Windows 11

  • Click OK
  • Sign out of your current account and sign in to the new one.

Now You Can Transfer Your Files

Once logged into the new account, open File Explorer and browse to:

C:\Users

  • Copy your files from the old profile folder to the new one. This includes documents, pictures, desktop files, downloads, and any other personal data. You may also need to sign back into apps and reconfigure certain settings.

Delete the Old Account

After confirming everything works correctly, you can remove the old account.

  • Open Settings
  • Go to Accounts
  • Click Other users
  • Select the old account
  • Click Remove

How to Change Your User Folder Name on Windows

  • Choose Delete account and data

This removes the old account and frees up storage space.

Link the New Account to Your Microsoft Account

If you originally used a Microsoft account, you can reconnect it to the new profile.

  • Open Settings
  • Go to Accounts
  • Open Your info
  • Click Sign in with a Microsoft account instead
  • Enter your Microsoft account credentials

After signing in, Windows will continue using the new folder name while keeping Microsoft account features such as OneDrive syncing and Microsoft Store access.

OPTION 2: Through the Registry Editor

Advanced users can rename the existing profile folder without creating a new account. However, this method is risky because incorrect Registry changes can damage the user profile. Before you start anything, create a backup or restore point.

  • Open Command Prompt as administrator and run:

net user "Administrator" /active:yes

Change Your User Folder Name on Windows

Sign out of your current account and log in to the built-in Administrator account.

  • Open Command Prompt and run:

wmic useraccount get name,SID

Find the SID associated with the account you want to rename.

  • Open Registry Editor
  • Go to:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList

  • Select the SID key matching your account
  • Double-click ProfileImagePath
  • Change the folder name portion of the path

For example:

C:\Users\OldName

to

C:\Users\NewName

  • Open File Explorer and go to:

C:\Users

  • Rename the profile folder to match the new Registry path exactly.

  • After finishing, restart the computer and sign back into your account.

  • Once everything works correctly, disable the built-in Administrator account with:

net user "Administrator" /active:no