Customer Self-Service Portal

Record the number of users

We are looking to monitor the number of users logged into a given system at a time. This would help us review periods of peek usage and correlate that to the number of users logged in at that particular time.

I can do this from the powershell prompt on windows:

(quser | measure | select -ExpandProperty count)-1

Thank you,