Quick fix: Sign in as existing Administrator. Open Settings → Accounts → Other users. Pick the local account → Change account type → Administrator. 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.
Affects: Windows 11.
Fix time: ~5 minutes.
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.
- Sign in with existing admin account.
- Open Settings → Accounts → Other users.
- Find the local account you want to promote.
- Click Change account type.
- Pick Administrator from dropdown.
- Click OK.
- Account now has admin rights. User can perform admin tasks.
- For demoting: same flow, pick Standard user.
This is the standard route.
Method 2: Promote via command line
For scripting or no-GUI access.
- Open Command Prompt as Admin.
- Promote:
net localgroup Administrators "Username" /addReplace Username with actual account name.
- For verification:
net localgroup Administrators. Shows current admins. - To demote:
net localgroup Administrators "Username" /delete. - For local user creation:
net user "NewName" "Password" /add & net localgroup Administrators "NewName" /add. - For PowerShell equivalent:
Add-LocalGroupMember -Group "Administrators" -Member "Username" - For listing local users:
Get-LocalUser. - 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.
- Open Computer Management: Win+X → Computer Management.
- Navigate: Local Users and Groups → Users.
- Right-click user → Properties.
- Switch to Member Of tab.
- Click Add. Type Administrators → Check Names → OK.
- Account now in Administrators group.
- For specific group permissions: add to other groups (Backup Operators, Power Users for legacy compatibility, Remote Desktop Users).
- For Microsoft account: same Computer Management; pick the Microsoft account entry.
- For viewing user info: Properties → General tab. Shows Full name, Description, Account disabled status.
- 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 Administratorsincludes 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.