All logged in users

Help us improve our product. Feature requests are welcomed!
Post Reply
Frans
Posts: 8
Joined: Wed Oct 17, 2018 8:46 am

All logged in users

Post by Frans » Wed Apr 28, 2021 10:26 am

Good morning,

We have several TsPlus servers. It would be nice to see all the logged in users from all the servers in one window. With filtering on server.
Or tabbed with All servers, Server1, server2 etc.

Regards Frans

User avatar
bzdega
Posts: 141
Joined: Tue Nov 14, 2017 9:34 am

Re: All logged in users

Post by bzdega » Wed Apr 28, 2021 2:47 pm

With a little dev knowledge, you can realise this by yourself:

1. create a batch file

query active users on a server and write the result into a .txt file:

Code: Select all

@echo off
SET DATUM=%DATE:~6,4%-%DATE:~3,2%-%DATE:~0,2%
SET ZEIT=%TIME:~0,2%-%TIME:~3,2%-%TIME:~6,2%

query user > count-active-user-"%DATUM%-%ZEIT%".txt
2. make a little website where you read theses files and show the result onto your 'status website'

this can be done e.g. with some HTML and jQery code, so that this data is dynamically updated...

Post Reply