码迷,mamicode.com
首页 > Windows程序 > 详细

得到windows服务的列表并查找服务的名称。

时间:2019-12-27 21:48:34      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:list   ==   container   har   服务   检测服务   cin   tab   名称   

这个例子展示了如何得到在本机安装的Windows服务。

 

得到已经安装的windows services

为了得到所有服务(不是设备驱动),可以使用 ServiceContro­ller.GetServices (取得驱动服务是用 ServiceController.GetDevices).

 

[C#]

 

1
ServiceController[] services = ServiceController.GetServices();
检测服务是否安装
下面的代码检测服务有没有在本机安装。得到windows服务的列表并查找服务的名称。
 
[C#]
1
2
3
4
5
6
7
8
9
10
11
12
13
public static bool IsServiceInstalled(string serviceName)
{
  // get list of Windows services
  ServiceController[] services = ServiceController.GetServices();
 
  // try to find service name
  foreach (ServiceController service in services)
  {
    if (service.ServiceName == serviceName)
      return true;
  }
  return false;
}

得到windows服务的列表并查找服务的名称。

标签:list   ==   container   har   服务   检测服务   cin   tab   名称   

原文地址:https://www.cnblogs.com/skyay/p/12109621.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!