Skip to content

Instantly share code, notes, and snippets.

@joepurdy
Last active February 8, 2019 18:03
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save joepurdy/28b894574cee15344918 to your computer and use it in GitHub Desktop.
Save joepurdy/28b894574cee15344918 to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
=begin
ModernIE VMs
config.vm.box = "modernIE/vista-ie7"
config.vm.box = "modernIE/w7-ie8"
config.vm.box = "modernIE/w7-ie9"
config.vm.box = "modernIE/w7-ie10"
config.vm.box = "modernIE/w7-ie11"
config.vm.box = "modernIE/w8-ie10"
config.vm.box = "modernIE/w8.1-ie11"
config.vm.box = "modernIE/w10-edge"
System Account Credentials
Username: IEUser
Password: Passw0rd!
=end
Vagrant.configure("2") do |config|
config.vm.box = "modernIE/w7-ie11"
config.vm.provider "virtualbox" do |vb|
vb.customize ["modifyvm", :id, "--memory", "1024"]
vb.customize ["modifyvm", :id, "--vram", "128"]
vb.customize ["modifyvm", :id, "--cpus", "2"]
vb.customize ["modifyvm", :id, "--natdnsproxy1", "on"]
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
vb.customize ["guestproperty", "set", :id, "/VirtualBox/GuestAdd/VBoxService/--timesync-set-threshold", 10000]
end
end
@alexandcote
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment