Advertisement
Guest User

Untitled

a guest
Sep 7th, 2017
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. # -*- mode: ruby -*-
  2. # vi: set ft=ruby :
  3.  
  4. Vagrant.configure("2") do |config|
  5.  
  6. # \\VBOXSVR\vagrant
  7.  
  8. config.vm.box = "Microsoft/EdgeOnWindows10"
  9. config.vm.box_check_update = false
  10.  
  11. config.vm.guest = :windows
  12. config.vm.communicator = :ssh
  13. config.ssh.insert_key = false
  14. config.ssh.username = 'IEUser'
  15. config.ssh.password = 'Passw0rd!'
  16.  
  17. config.vm.provider "virtualbox" do |vb|
  18. vb.gui = true
  19. vb.cpus = 4
  20. vb.memory = 4096
  21. vb.customize ["modifyvm", :id, "--vram", "256"]
  22. vb.customize ['modifyvm', :id, '--accelerate2dvideo', 'on']
  23. vb.customize ["modifyvm", :id, "--clipboard", "bidirectional"]
  24. end
  25.  
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement