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
All logged in users
Re: All logged in users
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:
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...
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
this can be done e.g. with some HTML and jQery code, so that this data is dynamically updated...