一切福田,不離方寸,從心而覓,感無不通。

c# windows服务状态、启动和停止服务

首先先引用System.ServiceProcess.dll

然后在引用命名空间using System.ServiceProcess;

ServiceController sc = new ServiceController("Server");建立服务对象
//服务运行则停止服务
if (sc.Status.Equals(ServiceControllerStatus.Running))
{
sc.Stop();
sc.Refresh();
}
//服务停止则启动服务
if ((sc.Status.Equals(ServiceControllerStatus.Stopped)) || (sc.Status.Equals(ServiceControllerStatus.StopPending)))
{
sc.Start();
sc.Refresh();
}
from:http://www.cnblogs.com/luluping/archive/2010/08/27/1809896.html