Is it possible to retrieve from a RDS server de user session list and show it on a asp.net webpage.
My main goal is to give a page where the users can logout their sessions when the sessions are "stucked".
Is it possible to retrieve from a RDS server de user session list and show it on a asp.net webpage.
My main goal is to give a page where the users can logout their sessions when the sessions are "stucked".
You can get the session list and logout users from the command line:
qwinsta /server:yourserver
logoff /server:yourserver 1 /v
So, you could use Process.Start()
to run these commands from your web application.