vote up 0 vote down star
2

How do I know that the active desktop has changed/user has created a new desktop?

Is there a WMI event for that?

I want to monitor the active desktops from a windows service.

One possible solution: Enumerate all desktops with a timer interval.

Is there a better solution?

flag

80% accept rate

2 Answers

vote up 0 vote down

Luckially, SO had a good "related" on this one, I answered this question to somebody else who did not want it... ;)

Anyhow, conceptually you can fall back on auditing event's for any sort of notification issue (do not poll).

But conviently enough, there is a project, JobObjectWrapper, which does this all for you allready (at least for C#).

The default code here locks out permission to do this, however if you need to be alerted via some async callback, you can use GetQueuedCompletionStatusEx and save your CPU cycles ;)

link|flag
vote up 1 vote down

Desktops

A desktop has a logical display surface and contains user interface objects such as windows, menus, and hooks; it can be used to create and manage windows. Each desktop object is a securable object. When a desktop is created, it is associated with the current window station of the calling process and assigned to the calling thread.

Messages can be sent only between processes that are on the same desktop. In addition, the hook procedure of a process running on a particular desktop can only receive messages intended for windows created in the same desktop.

The desktops associated with the interactive window station, Winsta0, can be made to display a user interface and receive user input, but only one of these desktops at a time is active. This active desktop, also known as the input desktop, is the one that is currently visible to the user and that receives user input. Applications can use the OpenInputDesktop function to get a handle to the input desktop. Applications that have the required access can use the SwitchDesktop function to specify a different input desktop.

By default, there are three desktops in the interactive window station: default, screen-saver, and Winlogon. The screen-saver and Winlogon desktops are secured desktops.

The default desktop is created when the logged-on user starts a process. At that point, the default desktop becomes active, and it is used to interact with the user.

Whenever the screen saver activates, the system automatically switches to the screen-saver desktop, which protects the processes on the default desktop from unauthorized users. Unsecured screen savers run on Winsta0\default.

The Winlogon desktop is active while a user logs on. The system switches to the default desktop when the shell indicates that it is ready to display something. During the user's session, the system switches to the Winlogon desktop when the user presses the CTRL+ALT+DEL key sequence, or when the User Account Control (UAC) dialog box is open.


So polling is probably your only option, MSDN doesn't have any other info on this. You're talking about windows guts here. Fun, fun.

link|flag
1  
Attribution! msdn.microsoft.com/en-us/library/… – edg Sep 22 '08 at 8:23

Your Answer

Get an OpenID
or

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