6 lines
381 B
Plaintext
6 lines
381 B
Plaintext
Ansible WindowsResumen:
|
|
1) Poner el Windows de Red Publica a Privada
|
|
2) winrm quickconfig -force
|
|
3) Set-Item -Path WSMan:\localhost\Service\Auth\Basic -Value $true
|
|
4) Set-Item -Path WSMan:\localhost\Service\AllowUnencrypted -Value $true
|
|
5) New-NetFirewallRule -Name "WinRM HTTP" -DisplayName "WinRM HTTP" -Enabled True -Direction Inbound -Protocol TCP -LocalPort 5985 -Action Allow |