VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > c#编程 >
  • C#教程之

本文以实例形式展示了基于C#实现Windows服务状态启动和停止服务的方法。非常实用。分享给大家供大家参考之用。具体方法如下:

首先先引用:

?
1
System.ServiceProcess.dll

然后在引用命名空间:

?
1
using System.ServiceProcess;

建立服务对象:

?
1
ServiceController sc = new ServiceController("Server");

服务运行则停止服务:

?
1
2
3
4
5
if (sc.Status.Equals(ServiceControllerStatus.Running))
{
 sc.Stop();
 sc.Refresh();
}

服务停止则启动服务:

?
1
2
3
4
5
if ((sc.Status.Equals(ServiceControllerStatus.Stopped)) || (sc.Status.Equals(ServiceControllerStatus.StopPending)))
{
 sc.Start();
 sc.Refresh();
}


相关教程