I found this in a blog post (from 21st April 2014) which says:

Vagrant is able to communicate with Windows over either SSH or WinRM. WinRM 
is more conventional, but if you have Cygwin installed with an SSH server, 
Vagrant is able to use that too.

The support for WinRM is new in 1.6. For backwards compatibily reasons, you 
must explicitly tell Vagrant when to use WinRM:

Vagrant.configure("2") do |config|
  # ...

  config.vm.communicator = "winrm"
end


On Thursday, July 24, 2014 8:49:29 PM UTC+1, Tyler Flaagan wrote:
>
> I am trying to launch Windows machines in AWS using Vagrant and they get 
> stuck waiting for SSH to become available and after some time it will error 
> out. The machine still gets launched which is what I want, but I just want 
> to tell it not to try to SSH so I can get a clean exit right away.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to