vote up 7 vote down star
5

Hi,

I have an application in C# (2.0 running in XP embedded) that is using 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?

-Edoode

flag

2 Answers

vote up 9 vote down check

I guess something like this would work:

ServiceController sc = new ServiceController(SERVICENAME);

switch (sc.Status)
{
    case ServiceControllerStatus.Running:
        return "Running";
    case ServiceControllerStatus.Stopped:
        return "Stopped";
    case ServiceControllerStatus.Paused:
        return "Paused";
    case ServiceControllerStatus.StopPending:
        return "Stopping";
    case ServiceControllerStatus.StartPending:
        return "Starting";
    default:
        return "Status Changing";
}

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.

link|flag
ServiceController.GetServices() retrieves a array that contains all the installed service as ServiceController object. This may help a lot. – ControlBreak Oct 7 '08 at 12:13
Good call, I don't know if I've ever used that. Even if you never use it, I guess that it would be useful for debugging if nothing else – Carl Oct 7 '08 at 12:18
sc.WaitforStatus() was exactly what I need. Thx – edosoft Oct 7 '08 at 12:57
vote up 3 vote down

Please have a look on the ServiceController object in .NET.

link|flag
Oooh...even better than rolling your own via WMI. I'll remove my answer. – EBGreen Oct 7 '08 at 12:12
@EBGreen - I don't know, the WMI route may be useful for someone else in future, there's more than one way to skin a cat, and all that.... – Carl Oct 7 '08 at 12:16
Ya, but I really do think ServiceController is better over all, so I think I will leave it deleted. I never would have even suggested WMI if I hadn't just woken up. :) – EBGreen Oct 7 '08 at 12:17

Your Answer

Get an OpenID
or

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