Skip to content

Instantly share code, notes, and snippets.

@andjc
Forked from joepurdy/modernIE-vagrantfile
Created February 11, 2016 09:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andjc/ea6394ceef244b0e0b3e to your computer and use it in GitHub Desktop.
Save andjc/ea6394ceef244b0e0b3e 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment