tags:

views:

37

answers:

1

I have a need to display alerts and such on-screen at any time the computer is running. We have a service running collecting these events, so that's not a problem - but I need to find a way to display critical alerts, even if the user hasn't logged in yet; that is, they're sitting at the 'Press Ctrl-Alt-Delete to log in' prompt.

Is this possible? If so, can it be done via managed code (C#)?

+2  A: 

In Windows XP and earlier, the system you'd be working with is GINA. This changed in Vista and Windows 7 to "Credential Providers". See here for some background.

Mark
I was just about to post the same thing. Even so, that mechanism is intended for use with alternative authentication providers -- it's not supposed to be used to put user-level notifications on the logon desktop.
Daniel Pryden
Agreed, but you'd still have to implement that mechanism to affect the logon desktop at all, AFAIK.
Mark
This is about what I figured - but it's for work, and I needed confirmation that it wouldn't be a quickie...
Erik Forbes