#inspired by: http://www.howtogeek.com/132354/how-to-map-network-drives-using-powershell/
# Good old DOS style
# net use Z: "\\VBOXSVR\VM-Share" /Persistent:Yes
# with credentials (PowerShell will prompt for username and password)
# New-PSDrive -Name "Z" -Root "\\server\share" -Persist -PSProvider "FileSystem" -Credential "domain\username"
New-PSDrive -Name "Z" -PSProvider FileSystem -Root "\\VBOXSVR\VM-Share" -Persist