标签:list == container har 服务 检测服务 cin tab 名称
这个例子展示了如何得到在本机安装的Windows服务。
得到已经安装的windows services
为了得到所有服务(不是设备驱动),可以使用 ServiceController.GetServices (取得驱动服务是用 ServiceController.GetDevices).
[C#]
1
|
ServiceController[] services = ServiceController.GetServices(); |
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 ; } |
标签:list == container har 服务 检测服务 cin tab 名称
原文地址:https://www.cnblogs.com/skyay/p/12109621.html