vote up 2 vote down star
1

I have an application that can list the opened windows of the current session. It uses the EnumWindows method from the user32.dll.

I would like to run this code from a windows service, but as the service is not attached to a user session, it returns nothing obviously.

So the question is, how can I enumerate the open windows of another user session (e.g. with a specific logon user)?

Similarly to EnumWindows, I also would like to get the foreground window of the user session as well (like GetForegroundWindow works for the current user).

flag

2 Answers

vote up 2 vote down check

As far as I'm aware, you can't access the windows of one session from another. It's also worth noting that there's not really any such thing as "the current session" - there may be multiple users logged on through terminal services, or XP's fast user switching.

One approach to this would be to add a program to each user's profile with no UI that just communicates with your service. You'd still have to cope with the fact that there could be multiple active sessions, though.

link|flag
And, actually, for many reasons it's better to do all UI in those per-user applications, controlling them from the service through some kind of IPC. – atzz Nov 22 '08 at 16:41
vote up 2 vote down

According to this document you can create a process in an other user's logon session using CreateProcessAsUser, and could enumerate the windows there. You will still need some IPC mechanism to communicate with the service.

link|flag
Since I need to perform this call not only once, but regularly, I would end up with a service that immediately starts a user-session app in each interactive session. So I would end up with the solution that DavidK/atzz suggested (having a service-like hidden app). But good to know about it! Thx! ;) – Gaspar Nagy Nov 24 '08 at 13:20

Your Answer

Get an OpenID
or

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