winrm set -?
명령을 실행할 때 다음 예제에서 리스너를 비활성화하는 방법을 볼 수 있습니다.
C:\Users\Administrator>winrm set -?
Windows Remote Management Command Line Tool
winrm set RESOURCE_URI [-SWITCH:VALUE [-SWITCH:VALUE] ...]
[@{KEY="VALUE"[;KEY="VALUE"]}]
[-file:VALUE]
Modifies settings in RESOURCE_URI using specified switches
and input of changed values via key-value pairs or updated
object via an input file.
Example: Disable a listener on this machine:
winrm set winrm/config/Listener?Address=*+Transport=HTTPS @{Enabled="false"}
그러나 cmd
위에서 제안한 것과 똑같은 명령을 실행 하면 오류가 발생합니다.
C:\Users\Administrator>winrm set winrm/config/Listener?Address=*+Transport=HTTPS @{Enabled="false"}
WSManFault
Message
ProviderFault
WSManFault
Message = The WS-Management service cannot process the request. The service cannot find the resource identified by the resource URI and selectors.
Error number: -2144108544 0x80338000
The WS-Management service cannot process the request. The service cannot find the resource identified by the resource URI and selectors.
그리고 PS에서는 다른 오류가 있습니다.
PS C:\Users\Administrator> winrm set winrm/config/Listener?Address=*+Transport=HTTPS @{Enabled="false"}
Error: Invalid use of command line. Type "winrm -?" for help.
서비스가 시작되어 실행 중입니다 ( test-wsman
PS에서 정상적으로 실행 됨).
C:\Users\Administrator>winrm e winrm/config/Listener
Listener
Address = *
Transport = HTTP
Port = 5985
Hostname
Enabled = true
URLPrefix = wsman
CertificateThumbprint
ListeningOn = 10.152.26.30, 127.0.0.1, ::1,fe80::5efe:10.152.26.30%14, fe80::f9c5:141f:ff25:6253%12
내가 무엇을 놓치고 있습니까? 위의 예제를 어떻게 성공적으로 실행할 수 있습니까?