A practical step-by-step guide for changing a standard user account to an administrator account using Settings, Control Panel, Computer Management, Command Prompt, and PowerShell.
An administrator account in Windows has elevated permissions that allow the user to install software, change system-wide settings, manage other accounts, edit security options, and approve User Account Control prompts. A standard user account can use installed apps and personal files, but it cannot make many system-level changes without administrator approval.
| Account Type | What the User Can Do | Best For |
|---|---|---|
| Standard User | Run apps, browse the web, save personal files, change personal settings | Daily use, guest users, safer shared computers |
| Administrator | Install programs, change system settings, manage accounts, approve UAC prompts | Computer owner, trusted power users, maintenance tasks |
| Microsoft Account | Can be either standard or administrator, depending on local Windows permissions | Syncing settings, OneDrive, Microsoft Store, Windows account recovery |
| Local Account | Can also be either standard or administrator | Offline use, simple local sign-in, test accounts |
To make another user an administrator, you normally need to sign in with an existing administrator account. Windows requires this to prevent unauthorized users from granting themselves full control over the computer.
The easiest way to change a user account type in Windows 11 is through the Settings app. This method works well for local accounts and Microsoft accounts already added to the PC.
Settings.Accounts.Other users. On some systems, this section may appear as Family & other users.Change account type.Administrator, then click OK.Settings β Accounts β Other users β Change account type β Administrator
Windows 10 has a very similar account management screen, although the menu names are slightly different from Windows 11.
Accounts.Family & other users from the left menu.Administrator from the menu and click OK.Settings β Accounts β Family & other users β Change account type β Administrator
The classic Control Panel method is still available in Windows 10 and Windows 11. It is useful if you prefer the older interface or if the Settings app does not display accounts correctly.
control, and press Enter.User Accounts β User Accounts.Manage another account. Confirm the UAC prompt if Windows asks.Change the account type.Administrator and click Change Account Type.| Method | Works in Windows 10 | Works in Windows 11 | Best Use Case |
|---|---|---|---|
| Settings | Yes | Yes | Fastest graphical method |
| Control Panel | Yes | Yes | Classic interface, simple account changes |
| Command Prompt | Yes | Yes | Fast local account management |
| PowerShell | Yes | Yes | Advanced users, scripting, automation |
Computer Management gives you more direct control over local users and groups. This method is mainly available in Windows Pro, Enterprise, and Education editions. Windows Home usually does not include the full Local Users and Groups snap-in.
Computer Management.System Tools β Local Users and Groups β Users.Member Of, then click Add.Administrators, click Check Names, and then click OK.Apply and OK.Local Users and Groups, you are probably using Windows Home. Use Settings, Control Panel, Command Prompt, or PowerShell instead.
Command Prompt is a quick way to add a local user account to the local Administrators group. You must run Command Prompt as administrator.
cmd.Command Prompt and select Run as administrator.Run this command to list local user accounts:
net user
Replace UserName with the real account name:
net localgroup Administrators "UserName" /add
Example:
net localgroup Administrators "Alex" /add
net localgroup Administrators "John Smith" /add.
On some non-English Windows installations, the local Administrators group may have a translated name. If the command fails, open Computer Management β Local Users and Groups β Groups to check the exact group name, or use PowerShell, which is often easier to read.
PowerShell is a modern alternative to Command Prompt. It is especially useful if you manage multiple local accounts or prefer clear command syntax.
Terminal (Admin), Windows PowerShell (Admin), or Windows Terminal (Admin).Get-LocalUser
Replace UserName with the local account name:
Add-LocalGroupMember -Group "Administrators" -Member "UserName"
Example:
Add-LocalGroupMember -Group "Administrators" -Member "Alex"
Get-LocalUser or Add-LocalGroupMember is not recognized, make sure you are using Windows PowerShell 5.1 or newer and that the LocalAccounts module is available on your edition of Windows.
Yes. A Microsoft account can be a standard user or an administrator on a Windows PC. If the account is already added to the computer, you can usually change its account type from Settings just like a local account.
Settings β Accounts.Other users in Windows 11 or Family & other users in Windows 10.Change account type.Administrator and click OK.Family accounts may be controlled by Microsoft Family Safety settings. If the account is managed as a child account, some permissions and restrictions may also be controlled online by the family organizer. Administrator status on the PC does not always remove family safety restrictions.
If the user no longer needs elevated permissions, change the account back to a standard user. This is recommended for shared computers and for accounts used mainly for browsing, gaming, or office work.
Open Settings β Accounts β Other users, select the account, click Change account type, and choose Standard User.
Run Command Prompt as administrator and use:
net localgroup Administrators "UserName" /delete
Run PowerShell as administrator and use:
Remove-LocalGroupMember -Group "Administrators" -Member "UserName"
If Windows does not let you change the account type, the cause is usually permissions, device management, or an account policy.
| Problem | Likely Cause | What to Do |
|---|---|---|
| Change account type is grayed out | You are signed in as a standard user | Sign in with an administrator account |
| UAC asks for an admin password | Windows needs administrator approval | Enter an administrator password or ask the PC owner |
| Computer is managed by organization | Work, school, or domain policy controls users | Contact IT support or the device administrator |
| Local Users and Groups is missing | Windows Home edition limitation | Use Settings, Control Panel, Command Prompt, or PowerShell |
| User does not appear in Settings | The account is not added to this PC or is hidden by policy | Add the user first or check Computer Management / organization policy |
| Command returns βAccess is deniedβ | Terminal was not opened as administrator | Right-click Command Prompt or Terminal and select Run as administrator |
Open Command Prompt and run:
net localgroup Administrators
If the user is listed under the Administrators group, the account already has administrator permissions.
Not through normal Windows settings. Windows requires administrator approval to promote a standard account. Use official account recovery options for your own PC, or contact the device owner or IT administrator.
It works, but it is safer to use a standard account for daily activity and an administrator account only when needed. This reduces the damage that unwanted software or mistaken changes can cause.
No. Changing the account type does not delete or move personal files. It only changes the userβs permission level in Windows.
Yes. Microsoft accounts and local accounts can both be administrators. The account type is controlled locally on each Windows computer.
This is normal. User Account Control still asks for confirmation before programs make system-level changes. Administrators can approve the prompt, while standard users usually need an administrator password.
Yes, if you can sign in with an administrator account in Safe Mode. Open an elevated Command Prompt and use the net localgroup Administrators "UserName" /add command.
The simplest way to make a user an administrator in Windows 10 or Windows 11 is through Settings β Accounts. Select the user, open Change account type, choose Administrator, and confirm the change. For advanced users, Command Prompt and PowerShell provide faster methods using the local Administrators group.
Use Settings for the easiest graphical method, Control Panel for the classic interface, Computer Management for local user group management, or Command Prompt / PowerShell for fast administrative commands. Always keep at least one administrator account on the PC and only give elevated rights to users you trust.