Windows 11 Check Administrator: 7 Ways To Verify Your Account

Reading time icon 6 min. read


Readers help support Windows Report. We may get a commission if you buy through our links. Tooltip Icon

Read our disclosure page to find out how can you help Windows Report sustain the editorial team Read more

Windows 11 Check Administrator

Windows 11 lets you check administrator rights for your account if you’re uncertain about its privileges.

Various routine and troubleshooting tasks require an administrator account. You might need to modify a work file located in the protected system directories, change network settings for better security, or even install fonts.

You can perform all these tasks with admin privileges, saving the back-and-forth communication with the IT support team. Also, you won’t get those annoying Administrator Access Denied pop-ups!

Here’s how to verify your status in just a few steps.

How To Check If You’re an Administrator on Windows 11

I covered seven different methods you can try:

Task Manager Tool

  1. Bring up the Task Manager dialog box by pressing Ctrl + Shift + Esc.
  2. Navigate to the Users menu in the left-side navigation panel.
  3. Find your account name below the User column header.
  4. If it’s an admin account, you’ll see the word Administrator in one of the columns to the right.
Using the Task Manager Tool

Settings App

  1. Click on the Start menu button and type Settings.
  2. The Settings System app will show up below the Best match section.
  3. Click on that to open Settings.
  4. Tap the Accounts menu in the left-side navigation panel.
  5. Your currently logged-in account will show on the right side.
  6. Below the name, you should see the type, like Administrator.
Accounts administrator
  1. If you’re on another account and would like to know who is the admin, click on the Other Users card on the right-side menu.
Other Users
  1. The Settings app will load all the available ones.
  2. Look for the Administrator tag below the account names.

Control Panel

  1. Press Windows + S to launch Windows Search.
  2. Type Control and click on the Control Panel icon.
  3. You’ll see a list of tools there. Select the User Accounts option.
user accounts
  1. If it’s not there, click on the Category drop-down arrow near View by.
  2. Select the Small icons option.
small icons
  1. Now, access the User Accounts menu.
  2. Click the Change your account type hyperlink.
  1. If the currently selected account type is Administrator and the Change Account Type button is greyed out, you’re logged in as an admin.
greyed out
  1. If you wish to find out if there are other admin accounts on the PC, go back to the User Accounts screen.
  2. Click on the Manage another account link.
manage account
  1. Choose a different user from the list and access the Change the account type link.
other account type

Windows File Explorer

  1. Open the File Explorer tool.
  2. Right-click on the Windows 11 installation drive or the C: drive.
  3. Click on Properties from the context menu.
Properties
  1. Go to the Security tab on the Properties dialog box.
  2. Find your user account in the Group or user names of the Security tab.
  3. There might be two accounts with the same name. One will be for admin and the other is for standard users.
  4. Select the one that says administrator along with your name.
  5. Look for the checkmarks for the Permissions for Administrators table.
Permissions for admin
  1. If everything is checked including the Full Control item, you’re using an admin account.

Computer Management Tool

  1. Bring up the Windows Search by pressing the Windows + S keys.
  2. Type Computer Management.
  3. Click on the app that shows up below the Best match section, named Computer Management System.
computer management
  1. Select the Local Users and Groups option on the left side navigation panel.
  2. Now, double-click on the Groups menu on the right side to access a full list of items.
double click groups
  1. Right-click on Administrators and select Properties from the context menu.
  2. The Administrators Properties dialog box will show.
  3. If you find your user name in the Members table, you’re logged in using an administrator account.
admin properties

Local Users and Groups Command

  1. Press the Windows + R keys together to launch the Run command.
  2. Type in lusrmgr.msc command inside the Open field and hit Enter.
run local user group
  1. The Local Users and Groups dialog box will open.
  2. Double-click on the User directory in the left-side navigation panel.
  3. A detailed list with all user accounts and profiles will open on the right side.
  4. Double-click on the target user name and navigate to the Member Of tab.
  5. If you see the Administrators member group inside this table, the selected account has admin privileges.
member of

Windows Command Line Interfaces

Here are the Windows 11 check administrator methods that involve various command line interfaces and relevant commands:

Command Prompt

  1. Open Command Prompt from the Start menu.
  2. Copy and paste the following inside the console:
net user adite
  1. The actual command is the net user. Anything after that should be your username.
  2. Hit Enter.
  3. CMD will list user account details.
  4. Scroll down to the bottom and locate the Local Group Memberships item.
Using Windows Command Line Interfaces cmd
  1. If you see Administrators next to it, your user account is an admin.

You can cycle through the same command by simply changing the user name at the end to find out if any other names hold admin rights or not.

PowerShell

  1. Right-click on the Start menu icon and select Terminal from the context menu.
  2. Enter the following Windows PowerShell script inside the terminal and hit Enter:
Get-LocalUser -Name $env:USERNAME | Select-Object Administrator
  1. Windows PowerShell will automatically detect the currently logged-in user account and show if it’s an admin.
powershell script 1
  1. If you’d like to find out if a specific user has admin rights or not, run the following script instead:
Get-LocalUser -Name "Adite" | Select-Object Administrator
  1. Change the user name in the Name code element before executing the script.
powershell script 2
  1. Use the following script if you’d like to list all the user accounts of the PC along with their account type information, like admin, standard, or guest:
# Get all local user accounts
$users = Get-WmiObject -Class Win32_UserAccount -Filter "LocalAccount=True"

# Define account types based on group membership
foreach ($user in $users) {
    $userType = ""

    # Check if the user is an administrator
    $isAdmin = Get-LocalGroupMember -Group "Administrators" | Where-Object { $_.Name -eq $user.Name }
    if ($isAdmin) {
        $userType = "Administrator"
    }

    # Check if the user is a guest
    $isGuest = Get-LocalGroupMember -Group "Guests" | Where-Object { $_.Name -eq $user.Name }
    if ($isGuest) {
        $userType = "Guest"
    }

    # If not admin or guest, assume standard user
    if (-not $userType) {
        $userType = "Standard"
    }

    # Output the user name and account type
    [PSCustomObject]@{
        'UserName' = $user.Name
        'AccountType' = $userType
    }
}
  1. You might see the Paste Anyway pop up on PowerShell when you copy and paste the above script.
powershell script 3

The script doesn’t require any manual editing. It’ll work on all Windows 11 and 10 PCs.

    Summary

    Did any of these Windows 11 check administrator methods work for you? Comment below to share your feedback and experience.

    You can also read how to make yourself admin on Windows 10, how to fix accidentally deleted admin accounts, and what to do if a Windows 10/11 admin account is missing.

    More about the topics: administrator account, Windows 11

    User forum

    0 messages