基于C#实现Windows服务状态启动和停止服务的方法
投稿:shichen2014
这篇文章主要介绍了基于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(); }
希望本文所述对大家的C#程序设计有所帮助