Skip to content

Instantly share code, notes, and snippets.

@kennonkwok
Created April 30, 2014 22:26
Show Gist options
  • Save kennonkwok/60ae04f5d2fff87e6498 to your computer and use it in GitHub Desktop.
Save kennonkwok/60ae04f5d2fff87e6498 to your computer and use it in GitHub Desktop.
<powershell>
winrm quickconfig -q
winrm set winrm/config/winrs '@{MaxMemoryPerShellMB="300"}'
winrm set winrm/config '@{MaxTimeoutms="1800000"}'
winrm set winrm/config/service '@{AllowUnencrypted="true"}'
winrm set winrm/config/service/auth '@{Basic="true"}'
netsh advfirewall firewall add rule name="WinRM 5985" protocol=TCP dir=in localport=5985 action=allow
netsh advfirewall firewall add rule name="WinRM 5986" protocol=TCP dir=in localport=5986 action=allow
net stop winrm
sc config winrm start=auto
net start winrm
net user Administrator "SuperS33cret"
</powershell>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment