gpt4 book ai didi

c# - 如何在 C# 中获取所有正在运行的服务?

转载 作者:可可西里 更新时间:2023-11-01 11:12:59 27 4
gpt4 key购买 nike

如何获得系统上安装的所有服务及其当前状态的列表?我不是在寻找使用 C# 中的 Process 类的进程列表,而是在寻找服务。

最佳答案

来自链接 here :

To get list of all services (which are not device drivers) use static method ServiceContro­ller.GetServi­ces (to get list of driver services use method ServiceContro­ller.GetDevices).

ServiceController[] services = ServiceController.GetServices();

您可以像这样在字典中获取所有服务的状态:

ServiceController[] services = ServiceController.GetServices();
var servicesStatus = services.ToDictionary(s => s.ServiceName, s => s.Status);

关于c# - 如何在 C# 中获取所有正在运行的服务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20300235/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com