How To Set Up a Local Administrator Account on Windows 11



UPDATED 12/24/2025: On Windows 11, having a local administrator account basically gives full control over the device—changing settings, installing apps, managing users, you name it. But here’s the thing: when you create a new local account, Windows defaults it to a “Standard” account, which is like user lite—can do some personalization, run apps, but can’t mess with system stuff or install anything system-wide. Not sure why, but that’s how it works. So, if full admin access is needed, gotta manually promote the account or enable the built-in Administrator account.

Getting a local admin account set up isn’t always straightforward, especially if you’re sticking with the GUI or want to do it quickly. This guide walks through a few different methods—using Settings, Computer Management, Command Prompt, and PowerShell—so you can pick whichever feels easiest or suits your scenario. Sometimes, creating the right kind of account saves a lot of headache later. Just keep in mind, messing around with admin accounts can cause issues if done blindly, so double-check the steps.

How to Create a Local Administrator Account Using Settings in Windows 11

Open the Settings app and go to Accounts

  • Hit Start or press Windows key and click Settings. Then head to Accounts.
  • Click on Other users. Then hit the Add account button.
  • Choose “I don’t have this person’s sign-in information” if prompted.
  • Next, select “Add a user without a Microsoft account”.

Create the account details

  • Enter a username and password. Here’s where you give the account an identity.
  • Set security questions just in case you forget the password later—it saves a lot of headaches.
  • Click Next.

Make the user an admin

  • Now, the tricky part—by default, this new account is just a Standard user.
  • To promote it, highlight the new account, click Change account type.
  • In the drop-down, select Administrator.
  • Press OK. Done. The account now has full admin rights.

On some setups, this last step might not immediately take effect—you may need to log out or restart to see the changes. That’s normal, and it’s kind of annoying, but it works. Just be careful not to give admin rights to untrusted accounts, because that could be a security risk.

Using Computer Management to Create or Enable an Admin Account

Create a new admin account via Computer Management

This method is more «manual, » but if you’re comfy with GUI stuff, it gives a bit more control. Open Start and search for Computer Management. Make sure to run it as administrator if prompted.

  1. In the left pane, expand Local Users and Groups.
  2. Right-click the Users folder and pick New User.
  3. Fill in username and password. Optional: uncheck “User must change password at next logon” and check “Password never expires” if you want less hassle.
  4. Click Create, then Close.
  5. Right-click your new user, go to Properties.
  6. Head to the Member Of tab.
  7. Click Add and type Administrators. Make sure you hit Check Names.
  8. Click OK, then Apply.

This grants admin rights. On some systems, you might need to log out or restart for it to fully kick in.

Enabling the built-in Administrator account

If you want to enable the default superuser account called “Administrator, ” here’s what to do:

  1. Open Computer Management as admin.
  2. Navigate again to Local Users and Groups > Users.
  3. Find Administrator, right-click, and choose Properties.
  4. Uncheck “Account is disabled”.
  5. Click Apply and OK.

Remember, this account has some serious privileges and isn’t turned on by default for safety, so only enable it if needed, and disable it again afterward.

Create a Local Admin Account Using Command Prompt

Open Command Prompt as an admin

  • Click Start, search for Command Prompt.
  • Right-click and select Run as administrator.

Create the user account

net user USER-NAME PASSWORD /add

Replace USER-NAME and PASSWORD with whatever credentials you want. For example: net user johndoe MySecurePass123 /add

Promote the account to admin

net localgroup administrators USER-NAME /add

Same deal—replace USER-NAME. This command adds your new user to the administrators group. Expect a success message if everything goes right. If not, double-check spelling or permissions.

Create a Local Admin Account with PowerShell

Open PowerShell as admin

  • Search for PowerShell, right-click, and pick Run as administrator.

Create the user with a secure password

$Password = Read-Host -AsSecureString

This line will prompt you to type the password securely.

New-LocalUser "NEW-ACCOUNT-NAME" -Password $Password -FullName "Full Name" -Description "Optional description"

Swap out NEW-ACCOUNT-NAME and Full Name for what suits you. Keep the description helpful if you want.

Add-LocalGroupMember -Group "Administrators" -Member "NEW-ACCOUNT-NAME"

This makes the account an admin. You might get a prompt or feedback confirming success. Not sure why it works, but it’s reliable once set up.

FAQs about Creating a Local Admin on Windows 11

What exactly is a local administrator account?

It’s a user account stored locally (not linked to a Microsoft account) with full rights on the system—including installing apps, changing system settings, and managing users.

Why does Windows 11 make new local accounts Standard by default?

Purely for security—limits the damage if some malware gets in or an accidental change happens. You gotta promote it to admin if full rights are needed.

Can I make a local account into an admin without creating a new one?

Absolutely. Just promote an existing Standard user through Settings, Computer Management, or command-line tools.

What’s the big difference between Standard and Admin accounts?

Admins can change anything, install software, manage other users, change system policies. Standard accounts are more of a user mode—safe for daily use but limited in system control.

Is the built-in Administrator account safe to enable?

It’s kinda risky if left enabled. It bypasses some security features and should only be turned on temporarily for specific tasks or troubleshooting.

Can I create an admin account if I’m not already an admin?

Nah. You need admin rights to promote or create admin accounts—so unless you’re already admin, you’re pretty much out of luck.

Which way is best?

Most folks find Settings easiest. Computer Management is nice for manual control, while Command Prompt and PowerShell are good for scripting, automation, or recovery modes. Pick what’s comfortable.

Can I change a Standard account to Admin later?

Yes. That’s usually straightforward—just promote it through Settings or the relevant tool, provided you have admin access. Otherwise, you’ll need a current admin user.

What if I want to remove an admin account later?

Sure, but make sure there’s always at least one admin account left. You don’t want to get locked out just because you deleted the last admin.

Update December 24, 2024: This info was freshened up for clarity and accuracy—always good to revisit for the latest tweaks, since Windows tends to change things up.



¿Te resultó útil este artículo?