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