Hi everybody,

I'm looking for a simple Vagrant / VirtualBox with Windows guest example.

So far I built my own windows box from the boxcutter/windows
templates, which worked fine.

Now I'm using the simplest possible Vagrantfile, like this:


Vagrant.configure(2) do |config|

  config.vm.box = "boxcutter/eval-win7x86-enterprise-nocm"

  config.vm.communicator = "winrm"
  config.ssh.insert_key = false
  config.vm.guest = :windows
  config.vm.synced_folder ".", "/vagrant", disabled: true

  config.vm.provision "shell", inline: "echo hello!"
end


However, what I get is:

* `vagrant up` keeps always hanging after the VM is up (it is still up, though)
* `vagrant ssh` works. yay! :-)
* `vagrant ssh -c "echo foo"` does not work as expected, ie. simply
drops me into the shell without executing the command
* `vagrant provision` keeps hanging without ever doing anything
* vboxsf synced folders never worked either (always hangs) :-/


Are my expectations set too high or am I just doing something plainly wrong?

Any examples showing that the above work would be super highly appreciated!!!

Thought it would be easier... ;-)

Cheers,
Torben

-- 
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 vagrant-up+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to