Page 1 of 1

All logged in users

Posted: Wed Apr 28, 2021 10:26 am
by Frans
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

Re: All logged in users

Posted: Wed Apr 28, 2021 2:47 pm
by bzdega
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...