当前位置: 编程技术>.net/c#/asp.net
c# 启动和停止windows服务
来源: 互联网 发布时间:2014-08-30
本文导语: 使用c#进行启动或停止windows中的服务的代码,供大家学习参考。 首先,引用System.ServiceProcess.dll 然后,引用命名空间using System.ServiceProcess; 代码如下: //建立服务对象 ServiceController sc = new ServiceController("Server"); //服务运行...
使用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();
}
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();
}