How to Change User Account Type in Windows 11
Managing user permissions in Windows 11 ensures that users have the appropriate level of access to system files, settings, and installed applications. A Standard account prevents unauthorized system-level changes and malware execution, while an Administrator account provides full control over the operating system. You can easily switch an account between Standard and Administrator using several built-in Windows tools, including the Settings app, Control Panel, and the User Accounts utility.
Method 1: Using Windows 11 Settings
- Press Win + I to open the Settings app.
- Select Accounts from the left-hand sidebar.
- Click on Other users (or Family & other users depending on your setup).
- Locate the user account you want to modify and click on it to expand the options.
- Click the Change account type button next to Account options.
- In the pop-up window, click the dropdown menu under Account type.
- Select either Standard User or Administrator.
- Click OK to save the changes.
Method 2: Using the User Accounts Tool (Netplwiz)
- Press Win + R to open the Run dialog box.
- Type
netplwizand press Enter. - In the Users tab, click the account name you want to modify.
- Click the Properties button below the user list.
- Navigate to the Group Membership tab.
- Choose either Standard user or Administrator.
- Click Apply, then click OK to close the windows.
Method 3: Using the Control Panel
- Press Win + S, type Control Panel, and press Enter.
- Under the User Accounts category, click Change account type.
- Select the user account you want to change.
- Click Change the account type on the left menu.
- Select either Standard or Administrator.
- Click the Change Account Type button to confirm.
Method 4: Using Command Prompt
- Press Win + S, type
cmd, right-click Command Prompt, and select Run as administrator. - To change a user to Administrator:
Type the following command and press Enter (replaceUsernamewith the actual account name):
net localgroup Administrators "Username" /add - To change a user to Standard (remove from
Administrators):
Type the following command and press Enter:
net localgroup Administrators "Username" /delete
Note: You must be signed in with an existing Administrator account to change permissions for any user on the system.