I'm attempting to run vagrant up in a cmd window on my host (Windows). Here is the problem I'm encountering - I have a number of network drives mapped to the host. Windows assigns a drive letter to the drive so in Windows explorer it looks like this:
MyFolder(\\PC1)(U:) Network Drive
In my Vagrantfile I have this line:
config.vm.synced_folder "W:/", "/vagrant/dev/officedrive", mount_options: ["dmode=777", "fmode=666"]
Which gives me a folder in vagrant/dev called officedrive. This is all well and works without a problem except when I try to run vagrant in host as admin. Then I get this message:
There are errors in the configuration of this machine. Please fix
the following errors and try again:
vm:
* The host path of the shared folder is missing: U:/
Any idea when this would be a problem?