Reputation: 77
After first running vagrant up
in my homestead directory my computer bluescreened because Hyper-V was enabled. Now after disabling Hyper-V and running vagrant up
I get this error:
There was an error while executing `VBoxManage`, a CLI used by Vagrant
for controlling VirtualBox. The command and stderr is shown below.
Command: ["showvminfo","\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"]
Stderr:
I have the latest Version of Vagrant and VirtualBox installed.
Upvotes: 5
Views: 8926
Reputation: 146
To solve this problem, you need to delete the folder .vagrant in the root directory of your project.
Then run the command vagrant up
again.
Upvotes: 13