Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've written a Windows Service that exposes a WCF service to a GUI installed on the same machine. When I run the GUI, if I can't connect to the service, I need to know if it's because the service app hasn't been installed yet, or if it's because the service is not running. If the former, I'll want to install it (as described here); if the latter, I'll want to start it up.

Question is: how do you detect if the service is installed, and then having detected that it's installed, how do you start it up?

share|improve this question

2 Answers

up vote 22 down vote accepted

Use:

// add a reference to System.ServiceProcess.dll
using System.ServiceProcess;

// ...
ServiceController ctl = ServiceController.GetServices().Where(s=>s.ServiceName == "myservice").FirstOrDefault();
if(ctl==null)
    Console.WriteLine("Not installed");
else    
    Console.WriteLine(ctl.Status);
share|improve this answer
+1 Interesting... – LordCover Dec 29 '10 at 12:51
Thank you - just what I needed! – Shaul Dec 29 '10 at 12:59
+1 Brilliant! And thank you. – francisco.preller Nov 29 '12 at 4:48
1  
using (var sc = ServiceController.GetServices().FirstOrDefault(s => s.ServiceName == "myservice")) - I think this is a better approach. – alexandrudicu Feb 18 at 9:02

You could use the following as well..

using System.ServiceProcess; 
... 
var serviceExists = ServiceController.GetServices().Any(s => s.ServiceName == serviceName);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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