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

Posted skyay

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了得到windows服务的列表并查找服务的名称。相关的知识,希望对你有一定的参考价值。

这个例子展示了如何得到在本机安装的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服务的列表并查找服务的名称。的主要内容,如果未能解决你的问题,请参考以下文章

windows 10 系统服务列表

Apache向Kerberos发送错误的服务器主体名称

追踪登录失败的账号

如何在 Windows 服务中获取所有打印机名称?

如何查找 Windows 服务当前正在使用的内核数量?

在android studio中播放从服务器获取的mp4 url​​列表的代码