I have an application in C# (2.0 running on XP embedded) that is communicating with a 'watchdog' that is implemented as a Windows Service. When the device boots, this service typically takes some time to start. I'd like to check, from my code, if the service is running. How can I accomplish this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I guess something like this would work:
Edit: There is also a method sc.WaitforStatus() that takes a desired status and a timeout, never used it but it may suit your needs. Edit: Once you get the status, to get the status again you will need to call |
|||||||||||||||||||||
|
|
Please have a look on the ServiceController object in .NET. |
|||||||||
|