I am using latest vagrant version (1.61), the one with native windows 
support with virtual box provider (also latest version 4.3.12r93733). 
Machine boots normally but vagrant is still waiting for it to boot.

The guest machine has the following things installed:

   - Windows 7 ee 64b + sp1 + all updates up to 04.06.2014 (added to domain)
   - Microsoft Management Framework 4 (Powershell 4.0) (.Net Framework 
   4.5.2)
   - virtual box guest additions
   - user: vagrant % vagrant (in administrators group)
   - winrm enabled, rdp enabled (all tested and work)
   - UAC disabled 
   

My `Vagrantfile` is:

    VAGRANTFILE_API_VERSION = "2"
    Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
    
      config.vm.box          = "win7-ee-sp1-64"
      config.vm.guest        = :windows
      config.vm.communicator = "winrm"
    
      config.vm.network "private_network", ip: "192.168.33.10"
      config.vm.network "public_network"    
      config.vm.network :forwarded_port, guest: 3389, host: 3391
      config.vm.network :forwarded_port, guest: 5985, host: 5987, id: 
"winrm", auto_correct: true       
    
      config.vm.provider "virtualbox" do |vb|
        vb.gui = true
        vb.customize ["modifyvm", :id, "--memory", "2048"]
       end
    end

When I run `vagrant up --debug` it constantly repeats command 

    VBoxManage.exe showvminfo 69f3df77-c302-4b21-a50d-23f32ccfee94 
--machinereadable

Apart from that machine boots and waits for login. If I login manually 
nothing changes. 
How can I debug this problem and what could be cause of it ?

-- 
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