# -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.require_version ">= 1.6.2" Vagrant.configure("2") do |config| config.vm.define "vagrant-windows-10-preview" config.vm.box = "windows_10_preview" config.vm.communicator = "winrm" # Admin user name and password config.winrm.username = "vagrant" config.winrm.password = "vagrant" config.vm.guest = :windows config.windows.halt_timeout = 15 config.vm.provider :virtualbox do |v, override| #v.gui = true v.customize ["modifyvm", :id, "--memory", 2048] v.customize ["modifyvm", :id, "--cpus", 2] v.customize ["setextradata", "global", "GUI/SuppressMessages", "all" ] end config.vm.provider :vmware_fusion do |v, override| v.gui = true v.vmx["memsize"] = "2048" v.vmx["numvcpus"] = "2" v.vmx["ethernet0.virtualDev"] = "vmxnet3" v.vmx["RemoteDisplay.vnc.enabled"] = "false" v.vmx["RemoteDisplay.vnc.port"] = "5900" v.vmx["scsi0.virtualDev"] = "lsisas1068" v.vmx["gui.fitguestusingnativedisplayresolution"] = "TRUE" v.vmx["mks.enable3d"] = "TRUE" v.vmx["mks.forceDiscreteGPU"] = "TRUE" v.vmx["gui.fullscreenatpoweron"] = "TRUE" v.vmx["gui.viewmodeatpoweron"] = "fullscreen" v.vmx["gui.lastPoweredViewMode"] = "fullscreen" v.vmx["sound.startconnected"] = "FALSE" v.vmx["sound.present"] = "FALSE" v.vmx["sound.autodetect"] = "TRUE" v.enable_vmrun_ip_lookup = false end config.vm.provider :vmware_workstation do |v, override| v.gui = true v.vmx["memsize"] = "2048" v.vmx["numvcpus"] = "2" v.vmx["ethernet0.virtualDev"] = "vmxnet3" v.vmx["RemoteDisplay.vnc.enabled"] = "false" v.vmx["RemoteDisplay.vnc.port"] = "5900" v.vmx["scsi0.virtualDev"] = "lsisas1068" v.enable_vmrun_ip_lookup = false end end