c# 启动和停止windows服务

发布时间:2020-02-22编辑:脚本学堂
c# 启动和停止windows服务

使用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();
}