Created
March 1, 2017 15:05
-
-
Save mdelillo/01a9d066494c9dfec7fd370d54c87cd8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# winrm quickconfig -q | |
cmd.exe /c 'winrm quickconfig -q' | |
"winrm quickconfig -q (Exit Code: ${LASTEXITCODE})" | |
# winrm quickconfig -transport:http | |
cmd.exe /c 'winrm quickconfig -transport:http' | |
"winrm quickconfig -transport:http (Exit Code: ${LASTEXITCODE})" | |
# Win RM AllowUnencrypted | |
cmd.exe /c 'winrm set winrm/config/service @{AllowUnencrypted="true"}' | |
"Win RM AllowUnencrypted (Exit Code: ${LASTEXITCODE})" | |
# Win RM auth Basic | |
cmd.exe /c 'winrm set winrm/config/service/auth @{Basic="true"}' | |
"Win RM auth Basic (Exit Code: ${LASTEXITCODE})" | |
# Win RM client auth Basic | |
cmd.exe /c 'winrm set winrm/config/client/auth @{Basic="true"}' | |
"Win RM client auth Basic (Exit Code: ${LASTEXITCODE})" | |
# Win RM listener Address/Port | |
cmd.exe /c 'winrm set winrm/config/listener?Address=*+Transport=HTTP @{Port="5985"}' | |
"Win RM listener Address/Port (Exit Code: ${LASTEXITCODE})" | |
# Win RM adv firewall enable | |
cmd.exe /c 'netsh advfirewall firewall set rule group="remote administration" new enable=yes' | |
"Win RM adv firewall enable (Exit Code: ${LASTEXITCODE})" | |
# Win RM port open | |
cmd.exe /c 'netsh firewall add portopening TCP 5985 "Port 5985"' | |
"Win RM port open (Exit Code: ${LASTEXITCODE})" | |
# Stop Win RM Service | |
cmd.exe /c 'net stop winrm' | |
"Stop Win RM Service (Exit Code: ${LASTEXITCODE})" | |
# Win RM Autostart | |
cmd.exe /c 'sc config winrm start=auto' | |
"Win RM Autostart (Exit Code: ${LASTEXITCODE})" | |
# Start Win RM Service | |
cmd.exe /c 'net start winrm' | |
"Start Win RM Service (Exit Code: ${LASTEXITCODE})" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment