如何在 Windows 中通过任务名称查找服务?

如何在 Windows 中通过任务名称查找服务?

例如,我知道该服务使用“myservice.exe”。如何从 MS-DOS 提示符或 Powershell 使用此任务查找注册的服务名称?

答案1

如何通过任务名称查找服务

wmic service与 一起使用findstr

例子:

C:\Users\David>wmic service get DisplayName, PathName | findstr httpd.exe
wampapache64                                                            "c:\wamp\bin\apache\apache2.4.9\bin\httpd.exe" -k runservice

进一步阅读

相关内容