Computer

Forget about permission problems with Windows accounts

When we sit down in front of the computer based on the Microsoft system to put it up and running for the first time, we usually create the administrator account. In the event that we are the only ones who are going to use this team, at first with that is more than enough. However, as time goes by and depending on the type of work we carry out, we might be interested in creating others. In fact, it could be said that this movement is essential in the case that several people are working on the same Windows computer.

Differences between system accounts

It is very possible that many of you know that, when creating user accounts in this system, we have more than one type. The main differences are in the available permissions, applications to run, etc. To give us a more exact idea of ​​what we are talking about, say that here we find two types of accounts to use, the standard one and the Administrator one. Say that both have a series of specific permissions that the differences. While that of Administrator gives us total control over the PC, the Standard is much more limited.

Serve as a clear example of all this that, if we need to carry out certain tasks that require high-level permissions such as installing a program or changing the system configuration, we need to be administrators. From all this it follows that, if we work with a standard account, first we will have to change its type to Administrator.

Therefore, those of you who have encountered this type of problem, then we are going to help you.

Change the type in a few steps

We will achieve this thanks to the forms of change the Administrator account in Windows that we are going to review. In this way and in a simple way, we can change its type between one or the other depending on the needs we have at that time. Next, we are going to show you a series of methods with their corresponding steps that will help you achieve this goal. In addition, for all this we will not need to use third-party software, since we can change these types directly from the Windows functions.

With the Windows Settings app

Over the years, the configuration application that is part of the Microsoft system has not stopped growing and receiving new functions. From here we have the possibility of managing the user accounts that we have created on this computer, which is what we are looking for now. In order to access this we only have to make use of the Win + I key combination. screen that appears we are located in the section called precisely Accounts.

Once we have clicked here, in the right panel we find a category called Family and other users. Then we can see on the screen the ones we have created in this Windows, they belong to the category they belong to. To change its type, all we have to do is click on the desired one and press the Change account type button.

account type settings

Take advantage of the Control Panel

Contrary to what happens with the aforementioned Configuration application, with the passage of time and the versions of Windows, the Control Panel it has been losing importance. With everything and with this it can still be very useful, for those who use it regularly, for the tasks that matter to us in this case. We just have to open this element and then go to the User Accounts section.

Here we will directly find a link that reads Change the type of account, where we click. In the screen that appears below, we find again all the ones that we have created so that we can change their type with just a mouse click on it.

panel accounts

Use this command in the run box

Another of the useful methods that we can use for this task that we comment on is simply opening a window of the execution box. We can achieve this by just using the key combination Win + R, in order to type the following command:

netplwiz

A new window will appear on the screen that corresponds to the User Accounts of the operating system. What we have to do in it is locate the one we want to change type and click on the button Properties which is located in the lower right corner of this window. Now we only have to go to the Group Membership tab in order to change its type.

Group membership

Change account type from CMD

More advanced operating system users are more than likely used to using a command prompt or CMD window. This helps us to solve all kinds of errors or repair corrupt files, among many other things. It is worth mentioning that it also allows us to change the type of account with a very simple command that we will show you. The first thing to do will be to open the command prompt window by typing the command cmd in the search box. We recommend running this with administrator permissions to be fully effective

open cmd manager

Then, in the window that appears on the screen, we only have to type the following command to achieve what we are looking for:

net localgroup Administrators NOMBRE_CUENTA /add

Once this is done, the specified one will become Administrator with its corresponding permissions. On the other hand, if we want to change to Standard, we type this command:

net localgroup Administrators NOMBRE_CUENTA /delete

Benefit from the advantages of PowerShell

In case you want to go a step further in everything related to working with commands, we can also manage the accounts with PowerShell. From here we can execute commands and scripts or carry out the task that we are looking for in these lines. the first thing we do is open this element through the key combination Win + X where we already find in the corresponding PowerShell entry. As in the previous case, it is preferable that we go with administrator permissions.

In the window that appears we will have to type the following command:

add-LocalGroupMember -Group “Administrators” -Member NOMBRE_CUENTA

In the event that we want to return to the initial state and that it becomes Standard again, we type the following:

remove-LocalGroupMember -Group “Administrators” -Member NOMBRE_CUENTA

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *