Last active
March 4, 2023 21:34
-
-
Save juanje/8496054 to your computer and use it in GitHub Desktop.
Batch script for activating the remote administration on Windows vía WinrRM
This file contains 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
@ECHO ON | |
REM This batch script is almost identical to http://code.can.cd/winrm_setup.bat | |
REM To use this from powershell on windows in a one liner: | |
REM (New-Object System.Net.WebClient).DownloadFile('https://gist.github.com/juanje/8496054/raw/winrm_setup.bat','winrm_setup.bat') ; .\winrm_setup.bat | |
cmd.exe /c winrm quickconfig -q | |
cmd.exe /c winrm quickconfig -transport:http | |
cmd.exe /c winrm set winrm/config @{MaxTimeoutms="1800000"} | |
cmd.exe /c winrm set winrm/config/winrs @{MaxMemoryPerShellMB="300"} | |
cmd.exe /c winrm set winrm/config/service @{AllowUnencrypted="true"} | |
cmd.exe /c winrm set winrm/config/service/auth @{Basic="true"} | |
cmd.exe /c winrm set winrm/config/client/auth @{Basic="true"} | |
cmd.exe /c winrm set winrm/config/listener?Address=*+Transport=HTTP @{Port="5985"} | |
cmd.exe /c netsh advfirewall firewall set rule name="Windows Remote Management (HTTP-In)" profile=public protocol=tcp localport=5985 remoteip=localsubnet new remoteip=any | |
cmd.exe /c net stop winrm | |
cmd.exe /c sc config winrm start= auto | |
cmd.exe /c net start winrm | |
@ECHO Done. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you. It is working fine.