Logged In Users on Windows 11: 4 Quick Tricks! 🔥💻
The Windows 10 and Windows 11 operating systems allow users to create different profiles. This feature is very useful for those who frequently share their computer or laptop with other family members, as it allows them to set up separate profiles for each person.
Each profile will have different settings, apps, and files. We've already shared a detailed guide on how to switch user accounts in Windows 11. Today, we're going to talk about how to find all logged-in users in Windows 11. 🖥️✨
In this method, we'll use the Windows 11 Start menu to find all logged-in users. To do so, you just need to follow a few simple steps, which we've shared below.
- First, press the Windows key or click the Start button.
- Now click on the profile picture displayed in the lower left corner of the start menu.
- You should find the username labeled “Online.”
Active user accounts will be labeled “Logged In” in the Start menu.
2. Find all connected users through Task Manager
Just like in the start menu, you can use the Windows Task Manager 11 to find all connected user accounts. Here are some simple steps to follow. 🙌
1. First, click on the Windows search and type Task Manager. Then, open Task Manager from the list of options.
2. In Task Manager, switch to the tab Users, as shown in the screenshot below.
3. The Users tab of the Task Manager will show all connected users.
3. Find logged in users in Windows 11 via Command Prompt
This method will use the utility of the Command Prompt To find all connected user accounts, follow some of the simple steps we've shared below. 💻🔍
1. Click the Windows 11 search button and type Command Prompt. Then, open Command Prompt from the list.
2. At the Command Prompt, type query user and press Enter.
3. Now, the Command Prompt will list all user accounts. You should notice the column StateThe user account marked “Active” is active on your PC.
This is how you can find all the users online on Windows 11 via Command Prompt.
4. Find all logged in user accounts using PowerShell
Like CMD, you can use other command-line utilities like Windows PowerShell to list all logged-in user accounts. Here's how to use PowerShell to list all logged-in user accounts. 💪🏼
1. Type PowerShell in Windows 11 search. Right-click on PowerShell and select Run as administrator.
2. This will open an instance of Elevated PowerShell. You need to run the following script:
$users = quser.exe | Select-Object -Skip 1 $unames = @() foreach ($u in $users) { $uname = ($u.trim() -replace '\s+',' ' -replace '>','' -split '\s')[0] $unames += New-Object psobject -Property ([ordered]@{ 'Connected Users' = [string]$uname }) } Write-Output $unames
3. The script will return all connected user accounts. You should look at the field Connected users to find the accounts that are registered on your computer.
Here's how you can find all logged in users in Windows 11 using PowerShell.
How to view or manage all user accounts in Windows 11?
The methods mentioned above only show you logged-in user accounts. What if you want to find and manage all user accounts in Windows 11? To do so, you'll need the Computer Management utility. Here's how to do it. 🔧
- Type "Computer Management" in Windows 11 search.
- Open the utility Team management.
- Change to System Tools > Local Users and Groups > User on the right side.
- On the right, you can see all user accounts.
- Right-click on the user account you want to manage and select Properties.
From the account properties, you can deactivate the account, add a password expiration time, and more.
These are the best ways to find all online users in Windows 11. I hope this article was helpful! 😊 Share it with your friends, too. If you have any questions, let us know in the comments below.