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

추가 자료

관련 정보