25 lines
		
	
	
		
			789 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			789 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# -*- mode: ruby -*-
 | 
						|
# vi: set ft=ruby :
 | 
						|
 | 
						|
Vagrant.require_version ">= 1.6.2"
 | 
						|
 | 
						|
Vagrant.configure("2") do |config|
 | 
						|
    config.vm.define "vagrant-windows-2019"
 | 
						|
    config.vm.box = "windows_2019"
 | 
						|
    config.vm.communicator = "winrm"
 | 
						|
 | 
						|
    config.vm.guest = :windows
 | 
						|
    config.windows.halt_timeout = 15
 | 
						|
 | 
						|
    config.vm.network :forwarded_port, guest: 3389, host: 3389, id: "rdp", auto_correct: true
 | 
						|
 | 
						|
    config.vm.provider :virtualbox do |v, override|
 | 
						|
        #v.gui = true
 | 
						|
        v.customize ["modifyvm", :id, "--memory", 6144]
 | 
						|
        v.customize ["modifyvm", :id, "--cpus", 2]
 | 
						|
        v.customize ["modifyvm", :id, "--vram", 128]
 | 
						|
        v.customize ["modifyvm", :id, "--clipboard", "bidirectional"]
 | 
						|
        v.customize ["setextradata", "global", "GUI/SuppressMessages", "all" ]
 | 
						|
    end
 | 
						|
end
 |