Last active
June 29, 2020 02:21
-
-
Save kaidokert/807444a02145bbab8b18c19bfb0c3023 to your computer and use it in GitHub Desktop.
Simple quick Win VM
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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