├── .gitignore ├── .rspec ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README-libvirt.md ├── README.md ├── Rakefile ├── VERSION ├── data ├── GeoTrust_Global_CA.pem ├── bginfo │ ├── BGFormat.bgi │ ├── ComputerModel.vbs │ ├── OSArchitecture.vbs │ ├── OnlyIPv4Address.vbs │ ├── OnlyIPv6Address.vbs │ ├── OperatingSystemInformation.vbs │ └── Set-Background.lnk ├── drivers │ └── virtio-win-0.1-100 │ │ └── win7 │ │ └── amd64 │ │ ├── netkvm.cat │ │ ├── netkvm.inf │ │ ├── netkvm.sys │ │ ├── netkvmco.dll │ │ ├── netkvmtemporarycert.cer │ │ ├── viostor.cat │ │ ├── viostor.inf │ │ ├── viostor.pdb │ │ └── viostor.sys ├── inin.jpg ├── vagrant.jpg └── vagrant.pub ├── exec.rb ├── iso └── .gitkeep ├── publish.sh ├── scripts ├── 00-run-all-scripts.cmd ├── 01-config-os.cmd ├── 02-config-posh.cmd ├── 02-fix-network.ps1 ├── 03-config-winrm.cmd ├── 04-install-imdisk.cmd ├── 04-install-openssh.cmd ├── 99-start-services.cmd ├── Backup-Logs.ps1 ├── Get-Checksum.ps1 ├── Set-AccountPicture.ps1 ├── _packer_config.cmd ├── centos-cleanup.sh ├── check-dotnet452.ps1 ├── check-icserver.ps1 ├── config-network.sh ├── config-shell.ps1 ├── create-user-vagrant.sh ├── disable-update.ps1 ├── enable-update.ps1 ├── install-chocolatey.ps1 ├── install-dotnet35.ps1 ├── install-dotnet452.ps1 ├── install-gui.ps1 ├── install-icextras.ps1 ├── install-icfirmware.ps1 ├── install-icpatch.ps1 ├── install-icserver.ps1 ├── install-puppet-modules.cmd ├── install-vmhost-additions.ps1 ├── install-vmhost-additions.sh ├── mount-iso.ps1 ├── prep-share.ps1 └── unmount-iso.ps1 ├── sources.json ├── spec ├── Vagrantfile ├── packages_spec.rb ├── ports_spec.rb ├── spec_helpers.rb └── vmtools_spec.rb └── templates ├── centos-7 ├── config.json ├── ks.cfg ├── packer.json └── vagrantfile.template ├── cic ├── Autounattend.xml ├── config.json ├── packer.json └── vagrantfile.template ├── metadata.json.erb ├── windows-10-enterprise-eval ├── Autounattend.xml ├── config.json ├── packer.json └── vagrantfile.template ├── windows-2012R2-core-standard-eval ├── Autounattend.xml ├── config.json ├── packer.json └── vagrantfile.template ├── windows-2012R2-full-standard-eval ├── Autounattend.xml ├── config.json ├── packer.json └── vagrantfile.template └── windows-8.1-enterprise-eval ├── Autounattend.xml ├── config.json ├── packer.json └── vagrantfile.template /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/LICENSE -------------------------------------------------------------------------------- /README-libvirt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/README-libvirt.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.1.0 2 | -------------------------------------------------------------------------------- /data/GeoTrust_Global_CA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/data/GeoTrust_Global_CA.pem -------------------------------------------------------------------------------- /data/bginfo/BGFormat.bgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/data/bginfo/BGFormat.bgi -------------------------------------------------------------------------------- /data/bginfo/ComputerModel.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/data/bginfo/ComputerModel.vbs -------------------------------------------------------------------------------- /data/bginfo/OSArchitecture.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/data/bginfo/OSArchitecture.vbs -------------------------------------------------------------------------------- /data/bginfo/OnlyIPv4Address.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/data/bginfo/OnlyIPv4Address.vbs -------------------------------------------------------------------------------- /data/bginfo/OnlyIPv6Address.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/data/bginfo/OnlyIPv6Address.vbs -------------------------------------------------------------------------------- /data/bginfo/OperatingSystemInformation.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/data/bginfo/OperatingSystemInformation.vbs -------------------------------------------------------------------------------- /data/bginfo/Set-Background.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/data/bginfo/Set-Background.lnk -------------------------------------------------------------------------------- /data/drivers/virtio-win-0.1-100/win7/amd64/netkvm.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/data/drivers/virtio-win-0.1-100/win7/amd64/netkvm.cat -------------------------------------------------------------------------------- /data/drivers/virtio-win-0.1-100/win7/amd64/netkvm.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/data/drivers/virtio-win-0.1-100/win7/amd64/netkvm.inf -------------------------------------------------------------------------------- /data/drivers/virtio-win-0.1-100/win7/amd64/netkvm.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/data/drivers/virtio-win-0.1-100/win7/amd64/netkvm.sys -------------------------------------------------------------------------------- /data/drivers/virtio-win-0.1-100/win7/amd64/netkvmco.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/data/drivers/virtio-win-0.1-100/win7/amd64/netkvmco.dll -------------------------------------------------------------------------------- /data/drivers/virtio-win-0.1-100/win7/amd64/netkvmtemporarycert.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/data/drivers/virtio-win-0.1-100/win7/amd64/netkvmtemporarycert.cer -------------------------------------------------------------------------------- /data/drivers/virtio-win-0.1-100/win7/amd64/viostor.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/data/drivers/virtio-win-0.1-100/win7/amd64/viostor.cat -------------------------------------------------------------------------------- /data/drivers/virtio-win-0.1-100/win7/amd64/viostor.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/data/drivers/virtio-win-0.1-100/win7/amd64/viostor.inf -------------------------------------------------------------------------------- /data/drivers/virtio-win-0.1-100/win7/amd64/viostor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/data/drivers/virtio-win-0.1-100/win7/amd64/viostor.pdb -------------------------------------------------------------------------------- /data/drivers/virtio-win-0.1-100/win7/amd64/viostor.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/data/drivers/virtio-win-0.1-100/win7/amd64/viostor.sys -------------------------------------------------------------------------------- /data/inin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/data/inin.jpg -------------------------------------------------------------------------------- /data/vagrant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/data/vagrant.jpg -------------------------------------------------------------------------------- /data/vagrant.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/data/vagrant.pub -------------------------------------------------------------------------------- /exec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/exec.rb -------------------------------------------------------------------------------- /iso/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/publish.sh -------------------------------------------------------------------------------- /scripts/00-run-all-scripts.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/00-run-all-scripts.cmd -------------------------------------------------------------------------------- /scripts/01-config-os.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/01-config-os.cmd -------------------------------------------------------------------------------- /scripts/02-config-posh.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/02-config-posh.cmd -------------------------------------------------------------------------------- /scripts/02-fix-network.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/02-fix-network.ps1 -------------------------------------------------------------------------------- /scripts/03-config-winrm.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/03-config-winrm.cmd -------------------------------------------------------------------------------- /scripts/04-install-imdisk.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/04-install-imdisk.cmd -------------------------------------------------------------------------------- /scripts/04-install-openssh.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/04-install-openssh.cmd -------------------------------------------------------------------------------- /scripts/99-start-services.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/99-start-services.cmd -------------------------------------------------------------------------------- /scripts/Backup-Logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/Backup-Logs.ps1 -------------------------------------------------------------------------------- /scripts/Get-Checksum.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/Get-Checksum.ps1 -------------------------------------------------------------------------------- /scripts/Set-AccountPicture.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/Set-AccountPicture.ps1 -------------------------------------------------------------------------------- /scripts/_packer_config.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/_packer_config.cmd -------------------------------------------------------------------------------- /scripts/centos-cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/centos-cleanup.sh -------------------------------------------------------------------------------- /scripts/check-dotnet452.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/check-dotnet452.ps1 -------------------------------------------------------------------------------- /scripts/check-icserver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/check-icserver.ps1 -------------------------------------------------------------------------------- /scripts/config-network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/config-network.sh -------------------------------------------------------------------------------- /scripts/config-shell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/config-shell.ps1 -------------------------------------------------------------------------------- /scripts/create-user-vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/create-user-vagrant.sh -------------------------------------------------------------------------------- /scripts/disable-update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/disable-update.ps1 -------------------------------------------------------------------------------- /scripts/enable-update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/enable-update.ps1 -------------------------------------------------------------------------------- /scripts/install-chocolatey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/install-chocolatey.ps1 -------------------------------------------------------------------------------- /scripts/install-dotnet35.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/install-dotnet35.ps1 -------------------------------------------------------------------------------- /scripts/install-dotnet452.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/install-dotnet452.ps1 -------------------------------------------------------------------------------- /scripts/install-gui.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/install-gui.ps1 -------------------------------------------------------------------------------- /scripts/install-icextras.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/install-icextras.ps1 -------------------------------------------------------------------------------- /scripts/install-icfirmware.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/install-icfirmware.ps1 -------------------------------------------------------------------------------- /scripts/install-icpatch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/install-icpatch.ps1 -------------------------------------------------------------------------------- /scripts/install-icserver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/install-icserver.ps1 -------------------------------------------------------------------------------- /scripts/install-puppet-modules.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/install-puppet-modules.cmd -------------------------------------------------------------------------------- /scripts/install-vmhost-additions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/install-vmhost-additions.ps1 -------------------------------------------------------------------------------- /scripts/install-vmhost-additions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/install-vmhost-additions.sh -------------------------------------------------------------------------------- /scripts/mount-iso.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/mount-iso.ps1 -------------------------------------------------------------------------------- /scripts/prep-share.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/prep-share.ps1 -------------------------------------------------------------------------------- /scripts/unmount-iso.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/scripts/unmount-iso.ps1 -------------------------------------------------------------------------------- /sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/sources.json -------------------------------------------------------------------------------- /spec/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/spec/Vagrantfile -------------------------------------------------------------------------------- /spec/packages_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/spec/packages_spec.rb -------------------------------------------------------------------------------- /spec/ports_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/spec/ports_spec.rb -------------------------------------------------------------------------------- /spec/spec_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/spec/spec_helpers.rb -------------------------------------------------------------------------------- /spec/vmtools_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/spec/vmtools_spec.rb -------------------------------------------------------------------------------- /templates/centos-7/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/centos-7/config.json -------------------------------------------------------------------------------- /templates/centos-7/ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/centos-7/ks.cfg -------------------------------------------------------------------------------- /templates/centos-7/packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/centos-7/packer.json -------------------------------------------------------------------------------- /templates/centos-7/vagrantfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/centos-7/vagrantfile.template -------------------------------------------------------------------------------- /templates/cic/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/cic/Autounattend.xml -------------------------------------------------------------------------------- /templates/cic/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/cic/config.json -------------------------------------------------------------------------------- /templates/cic/packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/cic/packer.json -------------------------------------------------------------------------------- /templates/cic/vagrantfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/cic/vagrantfile.template -------------------------------------------------------------------------------- /templates/metadata.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/metadata.json.erb -------------------------------------------------------------------------------- /templates/windows-10-enterprise-eval/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/windows-10-enterprise-eval/Autounattend.xml -------------------------------------------------------------------------------- /templates/windows-10-enterprise-eval/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/windows-10-enterprise-eval/config.json -------------------------------------------------------------------------------- /templates/windows-10-enterprise-eval/packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/windows-10-enterprise-eval/packer.json -------------------------------------------------------------------------------- /templates/windows-10-enterprise-eval/vagrantfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/windows-10-enterprise-eval/vagrantfile.template -------------------------------------------------------------------------------- /templates/windows-2012R2-core-standard-eval/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/windows-2012R2-core-standard-eval/Autounattend.xml -------------------------------------------------------------------------------- /templates/windows-2012R2-core-standard-eval/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/windows-2012R2-core-standard-eval/config.json -------------------------------------------------------------------------------- /templates/windows-2012R2-core-standard-eval/packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/windows-2012R2-core-standard-eval/packer.json -------------------------------------------------------------------------------- /templates/windows-2012R2-core-standard-eval/vagrantfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/windows-2012R2-core-standard-eval/vagrantfile.template -------------------------------------------------------------------------------- /templates/windows-2012R2-full-standard-eval/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/windows-2012R2-full-standard-eval/Autounattend.xml -------------------------------------------------------------------------------- /templates/windows-2012R2-full-standard-eval/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/windows-2012R2-full-standard-eval/config.json -------------------------------------------------------------------------------- /templates/windows-2012R2-full-standard-eval/packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/windows-2012R2-full-standard-eval/packer.json -------------------------------------------------------------------------------- /templates/windows-2012R2-full-standard-eval/vagrantfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/windows-2012R2-full-standard-eval/vagrantfile.template -------------------------------------------------------------------------------- /templates/windows-8.1-enterprise-eval/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/windows-8.1-enterprise-eval/Autounattend.xml -------------------------------------------------------------------------------- /templates/windows-8.1-enterprise-eval/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/windows-8.1-enterprise-eval/config.json -------------------------------------------------------------------------------- /templates/windows-8.1-enterprise-eval/packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/windows-8.1-enterprise-eval/packer.json -------------------------------------------------------------------------------- /templates/windows-8.1-enterprise-eval/vagrantfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildas/packer-windows/HEAD/templates/windows-8.1-enterprise-eval/vagrantfile.template --------------------------------------------------------------------------------