2 Options to Add a User to Local Administrators Group

July 13, 2015 updated by Admin Leave a reply »

Only an administrator can perform the administration tasks such as installing a driver or an application. If you have an existing standard or limited account, you can grant it administrator privileges by adding it to the built-in Administrators group. Here are two options to add a user to the local Administrators group in Windows 10, 8, 7, Vista or XP.

Option 1: Computer Management

The easier way to add a user to the local Administrators group is to use the Computer Management app. Here’s how:

  1. To open the Computer Management, right-click on My Computer icon on your desktop and then select Manage. Another method is to press the Windows key + R to bring up the Run box, then type compmgmt.msc and hit Enter.
  2. When the Computer Management window opens, expand Local Users And Groups in the left pane, and click on Users (Please skip to the option 2 below if you don’t see Local Users and Groups.)

    local-users-and-groups

  3. Double-click your desired user account in the right hand side.
  4. In the User Properties window, click the Add button.

    account-properties

  5. In the Select Groups dialog, type the name of your administrators group. Click Check Names, and then click OK.

    select-groups

    If you don’t know the name of your administrator group, click Advanced and next click Find Now.

Option 2: Command Prompt

However, not every edition of Windows have the Local Users and Groups entry in the Computer Management (for example, Windows 8 Home and domain controller). This method will work on all editions of Windows.

  1. Open an elevated Command Prompt. In Windows 10 or 8, press the Windows key + X and then click “Command Prompt (Admin)“. In Windows 7 or Vista, go to Start > All Programs > Accessories, then right-click on Command Prompt shortcut and select “Run as Administrator“.
  2. To see a list of local groups available, just type:
    net localgroup
  3. You can add a user to the built-in Administrators group by running the following command:

    net localgroup Administrators [username] /add

    For example, add a user named test to the administrators group, we can run the below command.
    net localgroup Administrators test /add

    add-user-to-group