vote up 0 vote down star

I'm writing a program to enumerate through processes, and I want to find out the SID/user ID and session of which the specified process is running under (i.e. i have a PID/handle to process, I want the SID and session it's running under). Any clues?

flag

2 Answers

vote up 2 vote down check

For the SID, call OpenProcess to get the handle, then pass the handle to GetSecurityInfo().

For the session id, use ProcessIdToSessionId().

link|flag
vote up 0 vote down

WTSEnumerateProcesses works like gangbusters here:

http://msdn.microsoft.com/en-us/library/aa383831%28VS.85%29.aspx

link|flag

Your Answer

Get an OpenID
or

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