Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2016
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. Vagrant.configure('2') do |config|
  2. config.vm.box = "opentable/win-8.1-enterprise-amd64-nocm"
  3.  
  4. config.vm.guest = :windows
  5. config.vm.communicator = :winrm
  6.  
  7. config.winrm.username = "vagrant"
  8. config.winrm.password = "vagrant"
  9.  
  10. config.vm.network :forwarded_port, guest: 3389, host: 3389, auto_correct: true
  11. config.vm.network :forwarded_port, guest: 5985, host: 5985, auto_correct: true
  12.  
  13. config.windows.set_work_network = true
  14.  
  15. config.vm.boot_timeout = 600
  16. config.vm.graceful_halt_timeout = 600
  17.  
  18. config.vm.provider "virtualbox" do |vb|
  19. vb.gui = true
  20. vb.customize ['modifyvm', :id,
  21. '--memory', '2048',
  22. '--cpus', '2',
  23. '--ioapic', 'on',
  24. '--chipset', 'ich9',
  25. '--vram', '32',
  26. '--clipboard', 'bidirectional',
  27. '--pae', 'on',
  28. '--rtcuseutc', 'on',
  29. ]
  30. end
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement