Spot an error? Know how to make this page better? I appreciate pull requests.

WinRM

Checking WinRM

Checks WinRM service is listening

Port 5985 is default, 5986 for https

curl \
  http://192.168.0.10:5985/wsman \
  --header "Content-Type: application/soap+xml;charset=UTF-8" \
  --data '<s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:wsmid="http://schemas.dmtf.org/wbem/wsman/identity/1/wsmanidentity.xsd"><s:Header/><s:Body><wsmid:Identify/></s:Body></s:Envelope>'

# basic auth
--basic -u user:password

Oneliner for copy and paste

curl http://192.168.0.10:5985/wsman --header "Content-Type: application/soap+xml;charset=UTF-8" --data '<s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:wsmid="http://schemas.dmtf.org/wbem/wsman/identity/1/wsmanidentity.xsd"><s:Header/><s:Body><wsmid:Identify/></s:Body></s:Envelope>'