Is there for my .Net application to detect if a user has logged on? It is a Windows Service, so it will be running before logon.

What I want to do is display a "popup" when a user logs on to tell them the status of the application

link|improve this question

Will it work for you to simply have a "popup" application run in the login script? – John Saunders Jan 28 '11 at 1:28
feedback

2 Answers

up vote 1 down vote accepted

I think you can modify the service to allow "Service can interact with desktop" (from services control panel) then create a NotifyIcon in your service which can popup messages on specific events. Though I'm not positive if this is possible, I would google "Windows Service" coupled with "NotifyIcon".

Addendum

Take a look at this SO article on desktop notifications. They go over the cautions of doing so, and way of making this happen (which basically eludes to building a separate application that establishes a perpetual connection that can receive updates from the service and notify accordingly).

link|improve this answer
I think he wants to display the popup on each user's monitor when the user logs in. – John Saunders Jan 28 '11 at 1:27
@JohnSaunders: Either way, judging by the wording, it sounds like it's a windows service that's either hosting or connecting to a WCF, and once a connection is made notify the user. I still feel what I've provided is the solution to the problem. – Brad Christie Jan 28 '11 at 1:47
feedback

Take a look at ServiceBase.OnSessionChange.

Remember to set CanHandleSessionChangeEvent to true at the constructor. Otherwise, this won't take effect.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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