How to See Currently Logged in Users in Windows 10 - 11

If you want to see the currently logged-in users on a Windows 10 or Windows 11 system, you can use the Command Prompt and the query user command. Here’s a step-by-step guide on how to do it:

  1. Open Command Prompt: Press Win + X and select “Windows Terminal” or “Command Prompt” from the menu. You can also simply search for “Command Prompt” in the Windows search bar and open it.

  2. Run query user Command: In the Command Prompt window, type the following command and press Enter:

    query user

    This command will display a list of all currently logged-in users on your Windows system.

  3. Review the List: After running the command, you will see a table with information about the logged-in users. The table typically includes details such as the username, session name, ID, and state.

Here’s an example of what the output might look like:

 USERNAME              SESSIONNAME        ID  STATE   IDLE TIME  LOGON TIME
 johndoe               console             1  Active          .  8/30/2023 1:23 PM
 jane.smith            rdp-tcp#0           2  Active          .  8/30/2023 9:45 AM

In this example, there are two logged-in users: “johndoe” and “jane.smith,” each with their session information.

That’s it! You’ve successfully used the query user command to see the currently logged-in users on your Windows 10 or Windows 11 computer.

For more detailed information and screenshots, you can refer to the source article.

0%