# How to Change the Administrator Name in Windows 10

> Rename a Windows account properly — display name, account name and the user profile folder are three different things, and only two of them are easy to change.

- Source: https://zepe.online/guides/change-administrator-name-windows-10
- Author: Robert Moca (https://zepe.online/author/robert-moca)
- Topic: Accounts and security
- Published: 2026-07-11T09:00:00+00:00
- Updated: 2026-08-07T09:00:00+00:00
- Author: Zepe editorial team (https://zepe.online/editorial-standards)
- Image: https://zepe.online/img/change-administrator-name-windows-10-featured-5b4f7adee9.webp

## The short answer

For a local account, run `netplwiz`, select the account, click **Properties** and change the User name. For a Microsoft account the name comes from your profile at account.microsoft.com. Neither renames the `C:\Users\name` folder.

## Key takeaways

- Three separate names exist per account: the display name on the sign-in screen, the underlying account name, and the profile folder path.
- netplwiz changes the account name for a local account; the Microsoft account name comes from your online profile.
- The profile folder cannot be safely renamed — hundreds of settings store the absolute path.
- The clean way to get a matching folder name is to create a new account with the name you want and migrate to it.

This question attracts a lot of bad advice, and the reason is simple: most guides never say which of three separate things they are renaming. They really are separate, they live in different places, and changing one does nothing to the other two. Sort out which one you mean and the rest is easy.

**The three names attached to a Windows account**

| Name | Where you see it | How to change it |
| --- | --- | --- |
| **Display name** | Sign-in screen, Start menu | netplwiz, or your Microsoft account profile |
| **Account name** | `net user` output, security dialogs | netplwiz, or `lusrmgr.msc` on Pro |
| **Profile folder** | `C:\Users\name` | Not safely changeable — create a new account |

> **Key point — Which one do you actually want?**
>
> If a name looks wrong on the sign-in screen or the Start menu, you want the display name and this takes a minute. If you want `C:\Users\` to match, that is the third row and there is no clean way to do it in place. Being clear which you want saves a lot of wasted effort.

## Renaming a local account

### Change the name with netplwiz

1. Press **Win + R**, type `netplwiz` and press Enter.
   This opens the older User Accounts dialog, which still offers controls the Settings app does not.
2. Select the account in the list and click **Properties**.
3. Change **User name**, and optionally the **Full name**.
   User name is the account name used internally. Full name is what appears on the sign-in screen if it is set.
4. Click **OK**, then **OK** again.
5. Sign out and back in for the change to appear everywhere.
   Some places, including the Start menu, cache the old name until the next sign-in.

There are two other routes to the same change. **Control Panel → User Accounts → Change your account name** works for the account you are signed into. On Pro, Enterprise and Education, `lusrmgr.msc` opens Local Users and Groups, where you can rename any account and see group memberships at the same time. From an elevated prompt, `wmic useraccount where name='oldname' rename 'newname'` does it in one command, though `wmic` is deprecated on current builds.

## Renaming a Microsoft account

If you sign in with an email address, the name on the sign-in screen comes from your online Microsoft profile, and netplwiz will not touch it. You can edit it locally all you like; Windows just syncs the old name back down. This is the single most common reason people think the rename failed.

### Change the name on a Microsoft account

1. Go to account.microsoft.com and sign in.
2. Select **Your info**, then **Edit name**.
3. Change the first and last name and save.
4. Back on the PC, sign out and sign back in.
   It can take a few minutes and occasionally a restart before the sign-in screen updates.

> **Careful — This changes it everywhere**
>
> The name on a Microsoft account is used across Outlook, Teams, Xbox and every other Microsoft service signed in with it. If you only want the local machine to say something different, switch that PC to a local account instead, but note that this loses settings sync and online password reset.

## The user profile folder, and why you should leave it alone

Now the frustrating one. `C:\Users\name` is created the first time the account signs in, using whatever the name was at that exact moment, and it never follows a later rename. That is why so many people end up with a folder like `C:\Users\joh_2`, built from the first part of an email address, staring at them for the life of the machine.

Renaming the folder is possible and is a bad idea. The path is stored as an absolute string in hundreds of places: the registry's ProfileList key, application settings, shortcut targets, service configurations, scheduled tasks, and the internals of installed software. Renaming the folder breaks all of them, and the failures arrive gradually rather than immediately, which makes them hard to connect back to the cause.

**Figure: What a profile-folder rename breaks**

Each of these stores the profile path as absolute text. A folder rename invalidates all of them at once, and the symptoms appear over days.

- **Registry** — ProfileList maps your account to the old path
- **Apps** — Settings files reference absolute paths
- **Shortcuts** — Targets and working directories break
- **Tasks** — Scheduled tasks and services fail silently

Guides do exist that walk through renaming the folder and then editing the ProfileList registry key to match. It works often enough for people to keep recommending it, and it fails often enough — with a temporary profile at next sign-in, or an application that no longer starts — that it is not worth it on a machine you rely on.

## The clean way to get the folder name you want

Make a new account with the name you actually want and move into it. More work up front, but nothing broken afterwards, and you get a clean profile out of it. This is the route I would take.

### Migrate to a correctly named account

1. Create a new **administrator** account with the name you want.
   The guide on [creating a user account](https://zepe.online/guides/create-user-account-windows-10) covers the local-account route, which gives you direct control over the name used.
2. Sign into it once so the profile folder is created, then check `C:\Users` shows the name you expected.
   Confirm before you move anything. If the folder name is still wrong, fix it now rather than after migrating.
3. Copy your files across from the old profile — Desktop, Documents, Pictures, Downloads, and anything you need from AppData.
   AppData is hidden by default; see [showing hidden files](https://zepe.online/guides/show-hidden-files-windows).
4. Work from the new account for a week before deleting the old one.
   A week surfaces the applications that need reconfiguring while the old profile is still there to copy from.
5. Delete the old account when you are confident.
   Follow the guide on [deleting a user account](https://zepe.online/guides/delete-user-account-windows-10), which covers rescuing data and cleaning up the leftover profile.

## The related question: renaming the PC itself

Different thing entirely, much simpler, and honestly it is often what people meant in the first place. The computer name is what shows up on your network and in remote-desktop connections, so if the wrong name is bothering you when you look at your own network, this is the one to change.

1. **Settings → System → About → Rename this PC**, type the new name, and restart.
2. Or press **Win + R**, run `sysdm.cpl`, click **Change** on the Computer Name tab.
3. Or from an elevated PowerShell prompt: `Rename-Computer -NewName "newname" -Restart`.
4. Use letters, numbers and hyphens only, and keep it to 15 characters — longer names cause problems with older network protocols.

Renaming a domain-joined machine is a different operation with real consequences for the computer's domain account. On a work laptop, ask whoever administers it rather than doing it yourself.

> **Editor's note — On the built-in Administrator account**
>
> Windows has an account literally called Administrator, disabled by default on consumer installs. Renaming it used to be standard security advice, the idea being that an attacker would have to guess the name as well as the password. In practice it buys you very little: the account's underlying security identifier still ends in the well-known -500 suffix no matter what you call it. Leaving it disabled is worth far more than renaming it.

## Common questions

### How do I change the administrator name in Windows 10?

For a local account, press **Win + R**, run `netplwiz`, select the account, click **Properties**, and change the User name. For a Microsoft account, change it at account.microsoft.com under Your info → Edit name, then sign out and back in on the PC.

### Why does C:\Users still show my old name?

Because the profile folder is created from whatever name existed when the account first signed in, and it does not follow later renames. That path is stored as absolute text in the registry, in application settings and in shortcuts, so Windows deliberately never changes it. The only clean fix is a new account with the right name.

### Can I rename the C:\Users folder safely?

Not really. Guides exist that rename the folder and then edit the registry's ProfileList key to match, and they work often enough to keep circulating. They also fail often enough — a temporary profile at next sign-in, applications that stop starting — that it is not worth doing on a machine you depend on.

### How do I change my computer's name rather than my account name?

Settings → System → About → **Rename this PC**, then restart. Or run `sysdm.cpl` and use the Change button on the Computer Name tab. Keep it to 15 characters using letters, numbers and hyphens. If the machine is joined to a work domain, ask whoever administers it first.

## Sources

- [Create a local user or administrator account in Windows](https://support.microsoft.com/en-us/windows/create-a-local-user-or-administrator-account-in-windows-20de74e0-ac7f-3502-a866-32915af2a34d) — Microsoft Support. Supports: Local account management, including changing account names and types through the Windows account tools.
- [net user — Windows commands reference](https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/net-user) — Microsoft Learn. Supports: The distinction between the account name and full name fields, and command-line account management.
- [Naming a file](https://learn.microsoft.com/en-us/windows/win32/fileio/naming-a-file) — Microsoft Learn. Supports: That Windows paths are absolute strings, which is why a stored profile path does not follow a folder rename.

## Related guides

- https://zepe.online/guides/create-user-account-windows-10
- https://zepe.online/guides/delete-user-account-windows-10
- https://zepe.online/guides/change-windows-password-and-pin

---

© 2026 Zepe. Windows is a trademark of Microsoft Corporation; this site is not affiliated with Microsoft.
