hexaae Asked: 2019-05-24 09:09:08 +0800 CST2019-05-24 09:09:08 +0800 CST 2019-05-24 09:09:08 +0800 CST 如何在 Windows 中按任务名称查找服务? 772 例如,我知道该服务使用“myservice.exe”。如何使用此任务从 MS-DOS 提示符或 Powershell 中查找已注册的服务名称? services tasks 1 个回答 Voted Best Answer DavidPostill 2019-05-24T12:40:05+08:002019-05-24T12:40:05+08:00 如何按任务名称查找服务 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 进一步阅读 Windows CMD命令行的AZ索引 | SS64.com Windows CMD 命令(分类) - Windows CMD - SS64.com Findstr - 搜索字符串 - Windows CMD - SS64.com WMIC - Windows 管理 - Windows CMD - SS64.com
如何按任务名称查找服务
wmic service
与一起使用findstr
。例子:
进一步阅读