How to Promote a Local Account to Administrator Safely on Windows 11
🔍 WiseChecker

How to Promote a Local Account to Administrator Safely on Windows 11

Quick fix: Sign in as existing Administrator. Open Settings → Accounts → Other users. Pick the local account → Change account typeAdministrator. OK. Alternative: Command Prompt (Admin) → net localgroup Administrators "Username" /add. The new admin can install apps, change system settings. Recommend: keep one strong admin account and use standard accounts for daily use.

Promoting a local account from Standard to Administrator requires existing admin rights. Multiple methods: GUI via Settings, command-line via net commands, or Computer Management. Best practice: only promote when necessary, keep daily-use accounts as Standard.

Symptom: Want to promote a local account to administrator on Windows 11.
Affects: Windows 11.
Fix time: ~5 minutes.

ADVERTISEMENT

What causes this need

Local accounts default to Standard user. Administrator rights needed for:

  • Installing apps system-wide.
  • Changing system settings (Group Policy, Services).
  • Managing other users.
  • Adding/removing devices.

Security trade-off: admin accounts vulnerable to malware. Use only when needed; daily-use should be Standard.

Method 1: Promote via Settings

The standard route.

  1. Sign in with existing admin account.
  2. Open Settings → Accounts → Other users.
  3. Find the local account you want to promote.
  4. Click Change account type.
  5. Pick Administrator from dropdown.
  6. Click OK.
  7. Account now has admin rights. User can perform admin tasks.
  8. For demoting: same flow, pick Standard user.

This is the standard route.

ADVERTISEMENT

Method 2: Promote via command line

For scripting or no-GUI access.

  1. Open Command Prompt as Admin.
  2. Promote:
    net localgroup Administrators "Username" /add

    Replace Username with actual account name.

  3. For verification: net localgroup Administrators. Shows current admins.
  4. To demote: net localgroup Administrators "Username" /delete.
  5. For local user creation: net user "NewName" "Password" /add & net localgroup Administrators "NewName" /add.
  6. For PowerShell equivalent:
    Add-LocalGroupMember -Group "Administrators" -Member "Username"
  7. For listing local users: Get-LocalUser.
  8. For automation: include in setup scripts for new PCs.

This is the CLI route.

Method 3: Use Computer Management for advanced control

For granular permission setup.

  1. Open Computer Management: Win+X → Computer Management.
  2. Navigate: Local Users and Groups → Users.
  3. Right-click user → Properties.
  4. Switch to Member Of tab.
  5. Click Add. Type Administrators → Check Names → OK.
  6. Account now in Administrators group.
  7. For specific group permissions: add to other groups (Backup Operators, Power Users for legacy compatibility, Remote Desktop Users).
  8. For Microsoft account: same Computer Management; pick the Microsoft account entry.
  9. For viewing user info: Properties → General tab. Shows Full name, Description, Account disabled status.
  10. For password reset: right-click user → Set Password. Note: resets user’s personal certificates.

This is the deeper management.

How to verify the fix worked

  • Settings → Accounts → Other users shows account as Administrator.
  • net localgroup Administrators includes the user.
  • Sign in as that user — UAC prompts appear without “Enter admin password” (you ARE admin).
  • Can install apps system-wide.

If none of these work

If promotion fails: Permission denied: ensure you’re running as Admin, not Standard. For domain accounts: domain user groups managed by AD admin. Contact IT. For Microsoft account: same as local; same procedures. For UAC issues: temporarily lower UAC during operations, restore after. For corporate AzureAD-joined PCs: Standard users can’t self-promote. Use cloud admin or AD admin. For Windows 11 Home limitations: Local Users and Groups (lusrmgr.msc) is Pro/Enterprise. Use net localgroup or Settings on Home. For chronic admin issues: built-in Administrator account (disabled by default). Activate: net user Administrator /active:yes. Use sparingly. Security warning: don’t leave multiple admin accounts unused. Disable / remove unused admins.

Bottom line: Settings → Accounts → Other users → Change account type → Administrator. Or net localgroup Administrators "Username" /add in Admin cmd. Use Computer Management for advanced permission setup.

ADVERTISEMENT