微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c# Windows服务管理

.NET Framework中提供的类库可以很方便的实现对windows服务的安装、卸载、启动、停止、获取运行状态等功能。这些类都在System.ServiceProcess命名空间下。

所以,在开始编写程序之前,需要先引用System.ServiceProcess。

获取Windows服务列表:

// 获取服务列表
ServiceController[] serviceList = ServiceController.GetServices();
// 按名称排序
serviceList = serviceList.OrderBy(m => m.displayName).ToArray();
// 遍历服务列表
foreach (ServiceController sc in serviceList)
{
    // 服务信息
}

启动服务:

string serviceName="服务名称";
ServiceController sc = new ServiceController(serviceName); //建立服务对象
if ((sc.Status.Equals(ServiceControllerStatus.Stopped)) || (sc.Status.Equals(ServiceControllerStatus.StopPending)))
{
    sc.Start();
    sc.WaitForStatus(ServiceControllerStatus.Running); //等待启动
    sc.Refresh();
}

停止服务:

string serverName="服务名称";
ServiceController sc = new ServiceController(serviceName); //建立服务对象
if (sc.Status.Equals(ServiceControllerStatus.Running))
{
    sc.Stop();
    sc.WaitForStatus(ServiceControllerStatus.Stopped);  //等待停止
    sc.Refresh();
}

重启服务:

string serviceName = "服务名称";
ServiceController sc = new ServiceController(serviceName); //建立服务对象
if (sc.Status.Equals(ServiceControllerStatus.Running))
{
    sc.Stop();
    sc.WaitForStatus(ServiceControllerStatus.Stopped);  //等待停止
    sc.Refresh();
}
sc.Start();
sc.WaitForStatus(ServiceControllerStatus.Running); //等待启动
sc.Refresh();

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐