How to View the List of Users in Windows
If you need to see all registered users on a computer running Windows, there are several easy ways to do it. Here’s a guide with a few methods to quickly access the list of users.
1. Using Command Prompt
One of the simplest ways to view the user list is through the Command Prompt:
- Press Win + R to open the "Run" dialog box.
- Type
cmd
and hit Enter. - In the Command Prompt window, type
net user
and press Enter.
After running this command, you’ll see a list of all user accounts on this computer.
2. Using Computer Management
You can also view users through the "Computer Management" tool:
- Right-click on the Start button and select Computer Management.
- In the Computer Management window, go to Local Users and Groups, then open the Users folder.
- Here, you’ll find a list of all local users on this device.
3. Using PowerShell
For those who prefer PowerShell, there’s a command to retrieve user information:
- Open PowerShell by pressing Win + R, typing
powershell
, and pressing Enter. - Type the following command:
Get-LocalUser
and press Enter.
This command will display a list of all local users on your computer.
4. Viewing Accounts via Control Panel
Another option is to use the Control Panel:
- Open the Control Panel and select User Accounts.
- Then, go to Manage another account.
- Here, you’ll see a list of users who can sign into your computer.