65

Right now I use a powershell script to see the currently logged in users. But I don't see if their session is idle, active or inactive. I can see when the session was started, that's it. Is there an easy way to see how many users are currently logged in to the server I am logged in and see their status? It should not be remotely executed. I would like to avoid third party tools if possible.

7 Answers 7

80

Use the query user command

Query User Command
http://technet.microsoft.com/en-us/library/bb490801.aspx

3
  • Does anyone know what API calls provide this information? Commented Sep 11, 2017 at 20:34
  • @NetMage I was just looking for that API myself. Not sure, but maybe check NetWkstaUserEnum. Commented Apr 8, 2018 at 20:37
  • It looks like the LsaEnumerateLogonSessions function is better as described on CodeProject - Enumerating Logon Sessions (there is ancient source code to download). Commented Apr 9, 2018 at 1:42
54

Open the Task-Manager and see the users tab. There you will find a list of users and their status.

Task-Manager

1
  • thanks, but this status is not "correct" it's empty while the cmd query user shows me "active" Commented May 26, 2014 at 10:43
5

"quser" command will give you the active now users

the same result will give you the "qwinsta" command

4
Get-WMIObject -class Win32_ComputerSystem -ComputerName 192.168.1.9 | Select-Object UserName

where 192.168.1.9 is the IP of the server

2
  • This only seems to return 1 user for me. Commented Mar 29, 2021 at 17:10
  • Worth noting that this will only return console logins, and not RDP sessions. Commented May 2, 2022 at 13:54
4

Use quser or query user to check users connected

quser

query user

quser or query user

Use qwinsta or query session to check sessions connected

qwinsta

query session

enter image description here

1

Also you can use the "UserLock" application to see which users logged in. By this 3rd party tool you can manage the session of the users as well as remote desktop sessions. It is a great tool in this case. I suggest you try this tool.

1

Its easy in Server 2016 when you are in a session:

Click the search glass bottom left on task bar

Type gateway in the box and this should bring up "Remote Desktop Gateway Manager"; select it.

Click on the ">" next to the RDS server you want to view (RDS-01) for most I guess, then select the monitoring folder

You can now see who is logged on, how long for, since what time and can disconnect them or set connection limits.

Please note you probably need certain admin rights to do this, but it works for me.

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.