5 Ways to Change a User Account Type on Windows 11
A Windows account you use to access your system determines the level of your control. For example, Standard account holders can only perform limited activities on the computer. On the contrary, administrative account users have full control over other user accounts and system settings.
If you have multiple users listed on your computer, there might come a situation when you want to switch the account type. For instance, you might have to limit a user’s access when they misconduct.
Fortunately, it is easy to change the user account type on Windows. But, only administrators can change machine settings and user account type on Windows 11 anytime.
Let’s see how to change a user account type on Windows 11.
User Account Types on Windows 11
There are mainly two user accounts available on Windows 11 and Windows 10 — Standard and Administrative user accounts. However, there is also a provision to create a guest user account for temporary users.
Each Windows user account offers different authority and control over the computer. Let’s understand the privileges and limitations of every user account:
Administrative User Account
Admin accounts have full control over the computer system and other user accounts. The first account created during the Windows 11 installation process has administrative privileges. These account users can delete or download software or make system changes however they want.
Standard User Account
A standard account user has limited privileges to perform tasks on a computer. For instance, these accounts cannot change other user accounts’ settings or install computer-wide software.
By default, a new user account is always standard in Windows 11. However, you can manually change the user account type in Windows 11 and switch the standard account to an administrator account.
Guest User Account
Windows also allow you to create a guest user account. This account is created when a user is given access for a limited time to a computer. It is a temporary account with limited privileges.
How to Check Your User Account Type in Windows 11?
Before learning to change user account type in Windows 11, let’s understand how to check your account type. You can check your current user account type on Windows 11 by following these steps:
Step 1. From the Start menu, search for the Control Panel.
Step 2. On the Control Panel window, click on User Accounts.
Step 3. Again, click on User Accounts and check the account type under your username. There you will know whether your account type is Standard or Administrator.
To check all user accounts configured on your computer, follow these steps:
Step 1. Go to the Control Panel.
Step 2. You can click on the Change account type option from the User Accounts section.
Step 3. If only the email address is visible, it is a standard user account. But, if the email address and administrator are shown, it is an admin user account. If under the username, it says Local account; it is also a standard account.
Legacy User Accounts Settings
Alternatively, you can also use the legacy user accounts settings to figure out whether your account is admin or not. To do so, follow the steps:
Step 1. Press Windows + R keys to open the command box, type netplwiz, and press Enter.
Step 2. If the Group column states Administrator, the account is Administrator. If it reads Users, the account type is a standard account user.
How to Change a User Account Type on Windows 11?
After finding your user account type on Windows, the next step is learning how to change it. Microsoft allows you to change a user account type on Windows 11 in many ways, such as:
Way 1. Use the Settings App
From the Windows Settings app, you can easily change the user account. However, you have to first log in from an admin account. You will only get the privilege to change other users’ account settings.
Here’s how you can change a user account type on Windows 11 using the Settings app:
Step 1. Press Windows and I keys to open the Settings app on your computer.
Step 2. After that, navigate to the following path on the Settings windows:

Accounts >> <a href=”http://ms-settings:otherusers”>Family & other users</a>
Step 3. Select the user account you want to change the type and expand it. Then, click on the Change account type next to the Account options.

Step 4. Now, a popup will appear on your screen. From there, select Standard user from the dropdown menu and click on OK. This will switch your account type to a standard. You can follow the steps if you want to change the account type again.
Way 2. Use Control Panel
There is also a way to change a user account type from the Control Panel window. If you are comfortable using the Control Panel app, follow these instructions to change your account type:
Step 1. Press Windows and R keys to open the command box. Type control and hit Enter.
Step 2. Choose the View by option as Category and next click on Change account type under the User Accounts.

Step 3. After that, click on the account you want to change the type of.
Step 4. Click on the Change account type.
Step 5. Select the new account type in the next window and then click on the Change Account Type. You might notice that the button is grayed out because the account is already selected.

Way 3. Use the Netplwiz Command
Netplwiz is a command that will directly take you to the User Account window. This command can easily change the user account type on Windows 11 as long as you are logged in as an administrator. Follow these steps to use this command:
Step 1. Press Windows and R to open the Run dialogue box. Type netplwiz and press Enter.
Step 2. On the User Account window, click on the user account you want to change and then click on the Properties.

Step 3. On the Properties window, go to the Group Membership tab, select the account type you want to change, and then click on Apply > OK to save the changes.
Way 4. Use the Computer Management Console
Group Management or Computer Management is yet another easy way to change a user account type on Windows 11. Usually, the account type is defined by which group it belongs to. That is because the account inherits its properties like privilege level.
Using the Computer Management console, you can define which user is a part of which group to control its type. For example, this method works as follows:
Step 1. Open the Run command box and type compmgmt.msc to launch the Computer Management.
Step 2. Expand Local Users and Groups from the left pane and click on the Users folder.

Step 3. Double-click on the user account from the middle pane that you wish to change.
Step 4. From the Properties window, switch to the Member Of tab and click Add.

Step 5. A new popup window will appear. Under Enter the object name to select field, enter any of the following account types and click on Check Names:
Administrators: To change to an administrative account.
Users: To change to a standard account
Step 6. Once you see the group’s complete name and your PC’s name together, click OK.
Step 7. Go back to the Properties window, select the other group under the Member Of field, and click Remove.
Step 8. Finally, click on Apply > OK to save the changes.
Way 5. Use the Command Prompt
If you are comfortable with the Command Line interface, you can use it to change a user account type on Windows 11. You can either use the Command Prompt or Windows PowerShell. This method can even remove administrative users’ privileges and switch them to standard accounts or vice versa.
To switch user account type from standard to administrator using the Command Prompt, follow these steps:
Step 1. Open the Command Prompt as an administrator from the Search menu.
Step 2. On the Command Prompt window, enter this command line:
net users
Step 3. You can now use the exact names of the user accounts on your device. Now, you can use the command to add the user account to the Administrators group, replacing AccName with the account name you want to change.

net localgroup Administrators “<em>AccName</em>” /add
To switch user account type from administrator to standard using the Command Prompt, launch the Command Prompt as an administrator. Now, use the following command to remove the user account from the Administrators group.

net localgroup Administrators “AccName” /delete
However, if you want to use Windows PowerShell to change the account type, follow these steps to change the standard account to an admin account:
Step 1. Launch the PowerShell as an administrator and enter this command to get the user account names on your computer:
Get-LocalUser
Step 2. After that, add a user account to the administrators’ group in Windows 11. Don’t forget to replace AccName with the account name you want to change to:
add-LocalGroupMember -Group “Administrators” -Member “<em>AccName</em>”
To convert account type to standard using PowerShell, use this command line:
remove-LocalGroupMember -Group “Administrators” -Member “AccName”
Conclusion
There you go, people! You can now change the account type on your Windows device. All the methods are easy to use. But if you are not a technical person, it is better to use the Control Panel or the Windows Settings app. Otherwise, you can also use the command line interface.
Regardless of your method, don’t forget to share your experience with us in the comments. Also, keep on following this portal for more information on technical guides.
Popular Post
Recent Post
How to Read Text Messages Out Loud with Android
Introduction By changing settings from the device’s accessibility screen, you may use Google’s Text-to-Speech tool. Select the content that will be read, decide how the smartphone will respond, and watch a brief instruction on how text-to-speech functions to improve your device. When enabled, your phone can read text out loud when you hold over something […]
How to Fix a Kmode Exception Not Handled Error in Windows
Introduction: If you use Windows frequently, encountering bugs and errors is quite inevitable, especially the Blue Screen of Death (BSOD) errors. And well, one such frustrating issue is the kmode exception not handled error that barges out of the blue hindering your workflow. Whether you are a tech-savvy enthusiast or a casual user, understanding and […]
How to Fix the “Class not Registered” Error on Windows
Introduction: If you’ve ever encountered the frustrating “Class not Registered” error message on your Windows computer, you’re not alone. This common issue can occur when you attempt to open a file, launch an application, or perform certain actions on your system. It often leaves users puzzled and wondering what went wrong. The “Class not Registered” […]
How to Screen Record on Windows 11
Introduction Open the Snipping Tool to begin a screen recording in Windows 11 to capture what is on your screen. You can also open the Game Bar on your Xbox by pressing Windows+G, then launch the recording window and tap the record button. Use a third-party program, such as OBS, ScreenPresso, or GeForce Service, to […]
Best Apple Pencil Apps for Productivity in 2023
Introduction The Ecosystem of the Apple company is huge as once you purchase any Apple device, you cannot resist other accessories of the Apple company. An Apple pencil is a part of the ecosystem and accessories for iOS Tablets and Macs. Whether you own a Tablet, MacBook, or iPhone, Apple pencil works on every device. […]
How to Customize the Taskbar in Windows 11
Introduction Taskbar is very useful in quick access to any other Windows directly from the Taskbar panel. But are you aware of the advantages and features you can access with a taskbar? Many people have no clue about what you can do with your Taskbar and how you can customize it. Therefore you can enjoy […]
Top 10 Offline RPGs For Windows in 2023
Introduction Looking for offline games! We got you a list of RPGs in 2023. In the developing World, the gaming community is rising with lightning speed. People play multiple role play games online with friends or for earning purposes. Nowadays, there are many popular platforms like YouTube and Twitch where you can earn money by […]
10 Best Coding Apps for Kids on Android And iOS
Introduction There has never been a better opportunity to get a competitive edge on whatever you want your young champ to learn, whether it is how to build some of the best useful apps or beautiful websites. The nicest aspect is the absence of an age requirement. It gives everyone—adults, teenagers, and children—endless opportunities. As […]
The Best 5 Screenshot Applications for Android to try now
You often struggle with taking screenshots on your Android phone following the default method, i.e., pressing the lock and volume down buttons together. The situation worsens further when either of the keys is not working properly. Besides, you need to synchronize the press times of both keys to take the screenshot, which often leads to […]
10 Best Translator Apps for Android & iOS
Introduction Technology has made it easy for people to connect worldwide. Whether you are interacting online or traveling to other locations, you can talk directly to people from those areas. Yet, just because the means to do it is now available, it does not remove the problem of language barriers. While you can learn the […]