Advertisement
Guest User

Untitled

a guest
Aug 12th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. Vagrant.configure("2") do |config|
  2. config.vm.box = "windows10_msedge"
  3. config.vm.boot_timeout = 500
  4. config.vm.network "private_network", ip: WIN10_MSEDGE_IP
  5. config.vm.provider "virtualbox" do |vb|
  6. vb.gui = true
  7. vb.name = "windows10_msedge"
  8. vb.cpus = 1
  9. vb.memory = 2048
  10. end
  11. config.vm.guest = :windows
  12. config.vm.communicator = "winrm"
  13. config.winrm.username = "IEUser"
  14. config.winrm.password = "Passw0rd!"
  15. config.windows.set_work_network = true
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement