Skip to content

Instantly share code, notes, and snippets.

@kaidokert
Last active June 29, 2020 02:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaidokert/807444a02145bbab8b18c19bfb0c3023 to your computer and use it in GitHub Desktop.
Save kaidokert/807444a02145bbab8b18c19bfb0c3023 to your computer and use it in GitHub Desktop.
Simple quick Win VM
Vagrant.configure("2") do |config|
config.vm.box = "gusztavvargadr/visual-studio"
config.vm.box_version = "2019.0.2006"
config.vm.provider "virtualbox" do |vb|
vb.gui = true
vb.memory = "8192"
vb.cpus = 6
vb.customize ["modifyvm", :id, "--accelerate3d", "on"]
vb.customize ["modifyvm", :id, "--clipboard", "bidirectional"]
vb.customize ["setextradata", "global", "GUI/MaxGuestResolution", "any"]
vb.customize ["setextradata", :id, "CustomVideoMode1", "1024x768x32"]
vb.customize ["storageattach", :id,
"--storagectl", "IDE Controller",
"--port", "1", "--device", "0",
"--type", "dvddrive",
"--medium", "emptydrive"]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment