mrh1997 / vanilla-win7-32bit-vagrantbox

Create a Windows 7 (32bit) Vagrant box based on the Microsofts evaluation version of Windows Enterprise
10 stars 6 forks source link

Correct command for vagrant box add #2

Open dkalog opened 3 years ago

dkalog commented 3 years ago

The command you mention does not work because vagrant has changed semantics and you need URL to install a box. If a box is downloaded you need file style like file:///d:/path/to/file.box

vagrant box add my-box file:///d:/path/to/file.box

mrh1997 commented 3 years ago

To make this repo universally usable (no matter into which directory it was cloned into) I had to use a relative path. Any idea how to realize this with the new URL convention for config.vm.box?