programing

Stop-Service Cmdlet이 존재하는 서비스를 열 수 없습니다.

goodcopy 2023. 9. 5. 21:17
반응형

Stop-Service Cmdlet이 존재하는 서비스를 열 수 없습니다.

로컬 컴퓨터에서 서비스를 중지하기 위해 PowerShell 스크립트를 작성하려고 합니다.

get-service cmdlet을 실행하면 예상대로 작동합니다.stop-service cmdlet을 사용하면 지정한 이름의 서비스가 없다는 오류가 표시됩니다.이것이 사실이라면 get-service cmdlet에서도 동일한 오류가 발생할 것입니다.

Get-Service "Service 1" # Returns Service and status
Stop-Service "Service 1" # Throws error below:

Stop-Service : Service 'Service 1' cannot be stopped due to the following error: Cannot open Service 1 service on computer '.'.

stop-service cmdlet을 사용할 때 트릭이 있습니까?

솔루션은 관리자로서 PowerShell을 실행하는 것이었습니다.Stop-Service는 그렇게 한 후에 정상적으로 작동했습니다.

언급URL : https://stackoverflow.com/questions/29146784/stop-service-cmdlet-not-able-to-open-service-that-exists

반응형