How to create or Add local user to Administrator group ✅2024
Method 1: Using Computer Management (GUI)
This is the most common and
user-friendly method.
1.
Open Computer Management:
o
Right-click on the Start button (Windows
icon) on your taskbar.
o
Select "Computer Management" from
the context menu.
2.
Navigate to Local Users and Groups:
o
In the left pane of the Computer
Management window, expand "Local
Users and Groups" by clicking the arrow next to it.
o
Click on "Users".
You will see a list of local user accounts on your computer in the right pane.
3.
Select the User Account:
o
In the right pane, find the local
user account you want to add to the Administrators group.
o
Right-click on that user account.
o
Select "Properties"
from the context menu.
4.
Go to the Member of Tab:
o
In the User Properties window, click
on the "Member
Of" tab. This tab lists the groups that the selected user
account currently belongs to.
5.
Add the Administrators Group:
o
Click the "Add..." button.
o
A "Select Groups" dialog box will
appear.
o
In the "Enter the object name to select
(examples):" field, type "Administrators".
o
Click the "Check Names" button. Windows
will attempt to resolve the name. It should underline
"Administrators" if found.
o
Click "OK" to close the
"Select Groups" dialog box.
6.
Verify the Addition:
o
Back in the User Properties window,
you should now see "Administrators"
listed in the "Member Of" section.
o
Click "Apply" and then "OK" to
save the changes and close the User Properties window.
The selected local user account is
now a member of the Administrators group and will have administrative
privileges on your Windows 11 computer.
Method 2: Using
Command Prompt (CMD) or PowerShell (CLI)
This method is useful for automation
or when you prefer using the command line.
Using Command Prompt
(as Administrator):
1.
Open Command Prompt as Administrator:
o
Click on the Start button.
o
Type "cmd".
o
Right-click on "Command Prompt"
in the search results.
o
Select "Run as administrator". Click "Yes"
if prompted by User Account Control (UAC).
2.
Execute the command:
o
Type the following command and press
Enter:
o net localgroup
Administrators <username> /add
Replace <username>
with the actual username of the local account you want to add. For example, if
the username is "GuestUser",
the command would be:
net localgroup
Administrators GuestUser /add
3.
Verification:
o
You should see a message indicating
that the command was successful.
Using PowerShell (as
Administrator):
1.
Open PowerShell as Administrator:
o
Click on the Start button.
o
Type "powershell".
o
Right-click on "Windows PowerShell"
in the search results.
o
Select "Run as administrator". Click "Yes"
if prompted by User Account Control (UAC).
2.
Execute the command:
o
Type the following command and press
Enter:
PowerShell
Add-LocalGroupMember -Group
"Administrators" -Member "<username>"
Replace <username> with the actual username of the
local account. For example:
PowerShell
Add-LocalGroupMember -Group
"Administrators" -Member "GuestUser"
3.
Verification:
o
The command will usually execute
without any output if successful. You can verify by using the Get-LocalGroupMember cmdlet:
PowerShell
Get-LocalGroupMember -Group
"Administrators"
The output should
list the members of the Administrators group, including the user you just
added.
Important
Considerations:
- Administrative
Privileges Required: You must be
logged in with an account that already has administrative privileges to
perform these actions.
- Security Implications: Adding a user to the Administrators group grants them
full control over your computer. Be cautious and only grant these
privileges to users you trust.
- Local Account: These methods are for managing local user
accounts on your individual computer, not domain accounts managed by a
network administrator.
Choose the method that you find most
convenient. The graphical interface (Computer Management) is generally easier
for most users, while the command-line methods can be more efficient for
certain tasks or scripting.
