Last active
January 3, 2016 12:39
-
-
Save vinyar/8463920 to your computer and use it in GitHub Desktop.
config verification for vagrant
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
winrm get winrm/config | |
winrm get winrm/config/winrs | |
winrm get winrm/config/service | |
winrm get winrm/config/service/auth | |
winrm get winrm/config/service/auth | |
---- you want to confirm that the values you have match these: | |
winrm set winrm/config '@{MaxTimeoutms="1800000"}'; | |
winrm set winrm/config/winrs '@{MaxMemoryPerShellMB="300"}'; | |
winrm set winrm/config/service '@{AllowUnencrypted="true"}'; | |
winrm set winrm/config/service/auth '@{Basic="true"}'; | |
winrm set winrm/config/service/auth '@{CredSSP="true"}'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment