Hello.
If the line to mount an iso is like this:
VBoxManage.exe storageattach "<uuid|vmname>" --storagectl IDE --port 0 --device 1 --type dvddrive --medium "X:\Folder\containing\the.iso"
Then the Vagrantfile will look like this:
vb.customize ["storageattach ", :id, "--storagectl ", "IDE", "--port", "0", "--device", "1", "--type", "dvddrive", "--medium", "C:\\vm\\Server2kR2.ISO"]
end
You can test manually first, you may need to give the full path of VBoxManage, and depending on if the disk is ide, then port 0 device 0 is used you can try port 1 device 0 or port 0 device 1
this is the same like old ide ports 0/1 with master/slave setup.
Thanks
Alvaro.