# -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.require_version ">= 1.6.2" Vagrant.configure("2") do |config| config.vm.define "vagrant-windows-2016" config.vm.box = "windows_2016" 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.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