Skip to content

Instantly share code, notes, and snippets.

@joepurdy
Last active January 11, 2016 22:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joepurdy/153e8b74000c4921d7c0 to your computer and use it in GitHub Desktop.
Save joepurdy/153e8b74000c4921d7c0 to your computer and use it in GitHub Desktop.
Modern IE Vagrant configuration
@echo off
set WINRM_EXEC=call %SYSTEMROOT%\System32\winrm
%WINRM_EXEC% quickconfig -q
%WINRM_EXEC% set winrm/config/winrs @{MaxMemoryPerShellMB="300"}
%WINRM_EXEC% set winrm/config @{MaxTimeoutms="1800000"}
%WINRM_EXEC% set winrm/config/client/auth @{Basic="true"}
%WINRM_EXEC% set winrm/config/service @{AllowUnencrypted="true"}
%WINRM_EXEC% set winrm/config/service/auth @{Basic="true"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment