website/docs: document WinRM execution time limit

This commit is contained in:
Mitchell Hashimoto 2015-11-18 13:05:08 -08:00
parent d3bcc4e5f9
commit e71e60ecac
2 changed files with 9 additions and 2 deletions

View File

@ -30,6 +30,7 @@ IMPROVEMENTS:
- core: allow removal of all box versions with `--all` flag [GH-3462] - core: allow removal of all box versions with `--all` flag [GH-3462]
- command/plugin: Add `--plugin-clean-sources` flag to reset plugin install - command/plugin: Add `--plugin-clean-sources` flag to reset plugin install
sources, primarily for corp firewalls. [GH-4738] sources, primarily for corp firewalls. [GH-4738]
- communicators/winrm: Configurable execution time limit [GH-6213]
- provisioners/shell: Support interactive mode for elevated PowerShell - provisioners/shell: Support interactive mode for elevated PowerShell
scripts [GH-6185] scripts [GH-6185]
- provisioners/ansible: add new `force_remote_user` option to control whether - provisioners/ansible: add new `force_remote_user` option to control whether

View File

@ -46,10 +46,16 @@ to use port 4567 to talk to the guest if there is no other option.
<hr> <hr>
`config.winrm.execution_time_limit` - The maximum duration that a WinRM
task can execute for. This defaults to two hours. The format of this value
must be in this [Microsoft-documented format](https://msdn.microsoft.com/en-us/library/aa382678.aspx).
<hr>
<strong>Warning:</strong> In order for Vagrant to communicate with a Windows <strong>Warning:</strong> In order for Vagrant to communicate with a Windows
guest, you must allow unencrypted WinRM connections on the guest machine guest, you must allow unencrypted WinRM connections on the guest machine
itself. Some public boxes already have this configured, but if you are itself. Some public boxes already have this configured, but if you are
attempting to `vagrant up` a Windows box and the command hangs at attempting to `vagrant up` a Windows box and the command hangs at
`Waiting for WinRM to become available...`, then you will need to run the `Waiting for WinRM to become available...`, then you will need to run the
commands below on the guest machine itself, at the box setup stage, commands below on the guest machine itself, at the box setup stage,
after provisioning, or through a start up script. after provisioning, or through a start up script.
@ -57,4 +63,4 @@ after provisioning, or through a start up script.
<pre class="prettyprint"> <pre class="prettyprint">
Set-Item WSMan:\localhost\Service\AllowUnencrypted -Value True Set-Item WSMan:\localhost\Service\AllowUnencrypted -Value True
Set-Item WSMan:\localhost\Service\Auth\Basic -Value True Set-Item WSMan:\localhost\Service\Auth\Basic -Value True
</pre> </pre>