-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Somehow with Windows 10 only the first command got executed.
- Loading branch information
Showing
1 changed file
with
11 additions
and
11 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
winrm quickconfig -q | ||
winrm set winrm/config/service/auth @{Basic="true"} | ||
winrm set winrm/config/service/auth @{CredSSP="true"} | ||
winrm set winrm/config/client/auth @{CredSSP="true"} | ||
winrm set winrm/config/client @{AllowUnencrypted="true"} | ||
winrm set winrm/config/service @{AllowUnencrypted="true"} | ||
winrm set winrm/config/winrs @{MaxConcurrentUsers="100"} | ||
winrm set winrm/config/winrs @{MaxMemoryPerShellMB="0"} | ||
winrm set winrm/config/winrs @{MaxProcessesPerShell="0"} | ||
winrm set winrm/config/winrs @{MaxShellsPerUser="0"} | ||
netsh advfirewall firewall add rule name=WinRM dir=in protocol=tcp localport=5985 action=allow profile=any | ||
call winrm quickconfig -q | ||
call winrm set winrm/config/client @{AllowUnencrypted="true"} | ||
call winrm set winrm/config/client/auth @{CredSSP="true"} | ||
call winrm set winrm/config/service @{AllowUnencrypted="true"} | ||
call winrm set winrm/config/service/auth @{Basic="true"} | ||
call winrm set winrm/config/service/auth @{CredSSP="true"} | ||
call winrm set winrm/config/winrs @{MaxConcurrentUsers="100"} | ||
rem call winrm set winrm/config/winrs @{MaxMemoryPerShellMB="0"} | ||
rem call winrm set winrm/config/winrs @{MaxProcessesPerShell="0"} | ||
rem call winrm set winrm/config/winrs @{MaxShellsPerUser="0"} | ||
call netsh advfirewall firewall add rule name=WinRM dir=in protocol=tcp localport=5985 action=allow profile=any |