I'm having a very difficult time listing and closing the sessions of folks using Mstsc /admin.

Does anyone know the API to use if the server is a normal server and not a terminal server per-se?

link|improve this question

74% accept rate
feedback

2 Answers

You can use the LsaEnumerateLogonSessions function to get a list of all logged in sessions, and use LsaGetLoginSessionData to determine what type of session it is.

If you're only interested in remote desktop sessions, WTSEnumerateSessions might be helpful as well. If you'd like to force a logoff, you can use WTSLogoffSession.

link|improve this answer
feedback

You can start with WTSEnumerateSessions or WTSEnumerateSessionsEx.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.