首先先引用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();
             }

相关文章:

  • 2021-08-13
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-22
  • 2021-05-28
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-27
  • 2022-12-23
  • 2021-10-14
相关资源
相似解决方案