Hello All,
I have 3 extra sessions running on a windows 2003 server.
1 is running in RDP session 1
1 is running in RDP session 2
1 is running via a scheduled task in the "background" (no windows desktop sessions were on when the task started).
When I query (using vbscript) for system sessions I only get the session that is running in the same RDP session as the vbscript script.
Am I doing something wrong or is this not supported by Extra? (I'm running version 8.0).
thanks in advance
I have 3 extra sessions running on a windows 2003 server.
1 is running in RDP session 1
1 is running in RDP session 2
1 is running via a scheduled task in the "background" (no windows desktop sessions were on when the task started).
When I query (using vbscript) for system sessions I only get the session that is running in the same RDP session as the vbscript script.
Am I doing something wrong or is this not supported by Extra? (I'm running version 8.0).
Code:
Set System = CreateObject("EXTRA.System") ' Gets the system object
SessionCount = System.Sessions.Count
WScript.Echo "System sessions are: " + CStr(SessionCount)
For i = 1 to SessionCount
WScript.Echo " Session is: " + System.Sessions.Item(i).Name
Next
thanks in advance