├── .gitattributes ├── .gitignore ├── .windows ├── isos │ ├── .gitignore │ └── Makefile └── provisions │ ├── .gitignore │ └── Makefile ├── 3rdparty └── curl.exe ├── AUTHORS ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── bin ├── Makefile.local.caroline ├── Makefile.local.caroline.vagrantcloud ├── Makefile.local.winry ├── compress.py ├── ssh-box.sh ├── test-box.sh ├── test-vagrantcloud-box.sh ├── tweak-json.py ├── tweak-jsons.sh └── upload.sh ├── box ├── virtualbox │ └── .gitignore └── vmware │ └── .gitignore ├── eval-win10x64-enterprise-cygwin.json ├── eval-win10x64-enterprise-ssh.json ├── eval-win10x64-enterprise.json ├── eval-win10x86-enterprise-cygwin.json ├── eval-win10x86-enterprise-ssh.json ├── eval-win10x86-enterprise.json ├── eval-win2008r2-datacenter-cygwin.json ├── eval-win2008r2-datacenter-ssh.json ├── eval-win2008r2-datacenter.json ├── eval-win2008r2-standard-cygwin.json ├── eval-win2008r2-standard-ssh.json ├── eval-win2008r2-standard.json ├── eval-win2012r2-datacenter-cygwin.json ├── eval-win2012r2-datacenter-ssh.json ├── eval-win2012r2-datacenter.json ├── eval-win2012r2-standard-cygwin.json ├── eval-win2012r2-standard-ssh.json ├── eval-win2012r2-standard.json ├── eval-win2016-standard-cygwin.json ├── eval-win2016-standard-ssh.json ├── eval-win2016-standard.json ├── eval-win7x64-enterprise-cygwin.json ├── eval-win7x64-enterprise-ssh.json ├── eval-win7x64-enterprise.json ├── eval-win7x86-enterprise-cygwin.json ├── eval-win7x86-enterprise-ssh.json ├── eval-win7x86-enterprise.json ├── eval-win81x64-enterprise-cygwin.json ├── eval-win81x64-enterprise-ssh.json ├── eval-win81x64-enterprise.json ├── eval-win81x86-enterprise-cygwin.json ├── eval-win81x86-enterprise-ssh.json ├── eval-win81x86-enterprise.json ├── floppy ├── .gitignore ├── 00-run-all-scripts.cmd ├── 01-install-wget.cmd ├── _download.cmd ├── _packer_config.cmd ├── _post_update_install.bat ├── _uninstall-bitvisessh.bat ├── _uninstall-cygwin.bat ├── autologon.bat ├── bitvisessh.bat ├── bitvisessh.cfg ├── cygwin.bat ├── cygwin.sh ├── disablewinupdate.bat ├── eval-win10x64-enterprise │ └── Autounattend.xml ├── eval-win10x86-enterprise │ └── Autounattend.xml ├── eval-win2012r2-datacenter │ └── Autounattend.xml ├── eval-win2012r2-standard │ └── Autounattend.xml ├── eval-win2016-standard │ └── Autounattend.xml ├── eval-win81x64-enterprise │ └── Autounattend.xml ├── eval-win81x86-enterprise │ └── Autounattend.xml ├── fixnetwork.ps1 ├── folderoptions.bat ├── hotfix-KB2842230.bat ├── install-features.cmd ├── install-winrm.cmd ├── networkprompt.bat ├── openssh.bat ├── pagefile.bat ├── passwordchange.bat ├── powerconfig.bat ├── remove-features.cmd ├── slim_win10.bat ├── time12h.bat ├── time24h.bat ├── uac-disable.bat ├── uac-enable.bat ├── unzip.vbs ├── update.bat ├── upgrade-wua.bat ├── win2008r2-datacenter │ └── Autounattend.xml ├── win2008r2-enterprise │ └── Autounattend.xml ├── win2008r2-standard │ └── Autounattend.xml ├── win2008r2-standardcore │ └── Autounattend.xml ├── win2008r2-web │ └── Autounattend.xml ├── win2012-datacenter │ └── Autounattend.xml ├── win2012-standard │ └── Autounattend.xml ├── win2012r2-datacenter │ └── Autounattend.xml ├── win2012r2-standard │ └── Autounattend.xml ├── win2012r2-standardcore │ └── Autounattend.xml ├── win2016-standard │ └── Autounattend.xml ├── win7x64-enterprise │ └── Autounattend.xml ├── win7x64-pro │ └── Autounattend.xml ├── win7x86-enterprise │ └── Autounattend.xml ├── win7x86-pro │ └── Autounattend.xml ├── win81x64-enterprise │ └── Autounattend.xml ├── win81x64-pro │ └── Autounattend.xml ├── win81x86-enterprise │ └── Autounattend.xml ├── win81x86-pro │ └── Autounattend.xml ├── zz-start-transports.cmd └── zzz-debug-log.cmd ├── script ├── 01-install-handle.cmd ├── KB2999226.cmd ├── clean.bat ├── cmtool.bat ├── dump-logs.cmd ├── enable-rdp.cmd ├── reboot.cmd ├── regenerate-dotnet-cache.cmd ├── save-logs.cmd ├── save-temp-dirs.cmd ├── sdelete.bat ├── ultradefrag.bat ├── uninstall-7zip.bat ├── uninstall-cygwin.cmd ├── uninstall-openssh.cmd ├── vagrant.bat └── vmtool.bat ├── test ├── spec_helper.rb └── windows_spec.rb ├── tpl ├── vagrantfile-eval-win10x64-enterprise-cygwin.tpl ├── vagrantfile-eval-win10x64-enterprise-ssh.tpl ├── vagrantfile-eval-win10x64-enterprise.tpl ├── vagrantfile-eval-win10x86-enterprise-cygwin.tpl ├── vagrantfile-eval-win10x86-enterprise-ssh.tpl ├── vagrantfile-eval-win10x86-enterprise.tpl ├── vagrantfile-eval-win2008r2-datacenter-cygwin.tpl ├── vagrantfile-eval-win2008r2-datacenter-ssh.tpl ├── vagrantfile-eval-win2008r2-datacenter.tpl ├── vagrantfile-eval-win2008r2-standard-cygwin.tpl ├── vagrantfile-eval-win2008r2-standard-ssh.tpl ├── vagrantfile-eval-win2008r2-standard.tpl ├── vagrantfile-eval-win2012r2-datacenter-cygwin.tpl ├── vagrantfile-eval-win2012r2-datacenter-ssh.tpl ├── vagrantfile-eval-win2012r2-datacenter.tpl ├── vagrantfile-eval-win2012r2-standard-cygwin.tpl ├── vagrantfile-eval-win2012r2-standard-ssh.tpl ├── vagrantfile-eval-win2012r2-standard.tpl ├── vagrantfile-eval-win2016-standard-cygwin.tpl ├── vagrantfile-eval-win2016-standard-ssh.tpl ├── vagrantfile-eval-win2016-standard.tpl ├── vagrantfile-eval-win7x64-enterprise-cygwin.tpl ├── vagrantfile-eval-win7x64-enterprise-ssh.tpl ├── vagrantfile-eval-win7x64-enterprise.tpl ├── vagrantfile-eval-win7x86-enterprise-cygwin.tpl ├── vagrantfile-eval-win7x86-enterprise-ssh.tpl ├── vagrantfile-eval-win7x86-enterprise.tpl ├── vagrantfile-eval-win81x64-enterprise-cygwin.tpl ├── vagrantfile-eval-win81x64-enterprise-ssh.tpl ├── vagrantfile-eval-win81x64-enterprise.tpl ├── vagrantfile-eval-win81x86-enterprise-cygwin.tpl ├── vagrantfile-eval-win81x86-enterprise-ssh.tpl ├── vagrantfile-eval-win81x86-enterprise.tpl ├── vagrantfile-win2008r2-datacenter-cygwin.tpl ├── vagrantfile-win2008r2-datacenter-ssh.tpl ├── vagrantfile-win2008r2-datacenter.tpl ├── vagrantfile-win2008r2-enterprise-cygwin.tpl ├── vagrantfile-win2008r2-enterprise-ssh.tpl ├── vagrantfile-win2008r2-enterprise.tpl ├── vagrantfile-win2008r2-standard-cygwin.tpl ├── vagrantfile-win2008r2-standard-ssh.tpl ├── vagrantfile-win2008r2-standard.tpl ├── vagrantfile-win2008r2-standardcore-cygwin.tpl ├── vagrantfile-win2008r2-standardcore-ssh.tpl ├── vagrantfile-win2008r2-standardcore.tpl ├── vagrantfile-win2008r2-web-cygwin.tpl ├── vagrantfile-win2008r2-web-ssh.tpl ├── vagrantfile-win2008r2-web.tpl ├── vagrantfile-win2012-datacenter-cygwin.tpl ├── vagrantfile-win2012-datacenter-ssh.tpl ├── vagrantfile-win2012-datacenter.tpl ├── vagrantfile-win2012-standard-cygwin.tpl ├── vagrantfile-win2012-standard-ssh.tpl ├── vagrantfile-win2012-standard.tpl ├── vagrantfile-win2012r2-datacenter-cygwin.tpl ├── vagrantfile-win2012r2-datacenter-ssh.tpl ├── vagrantfile-win2012r2-datacenter.tpl ├── vagrantfile-win2012r2-standard-cygwin.tpl ├── vagrantfile-win2012r2-standard-ssh.tpl ├── vagrantfile-win2012r2-standard.tpl ├── vagrantfile-win2012r2-standardcore-cygwin.tpl ├── vagrantfile-win2012r2-standardcore-ssh.tpl ├── vagrantfile-win2012r2-standardcore.tpl ├── vagrantfile-win2016-standard-cygwin.tpl ├── vagrantfile-win2016-standard-ssh.tpl ├── vagrantfile-win2016-standard.tpl ├── vagrantfile-win7x64-enterprise-cygwin.tpl ├── vagrantfile-win7x64-enterprise-ssh.tpl ├── vagrantfile-win7x64-enterprise.tpl ├── vagrantfile-win7x64-pro-cygwin.tpl ├── vagrantfile-win7x64-pro-ssh.tpl ├── vagrantfile-win7x64-pro.tpl ├── vagrantfile-win7x86-enterprise-cygwin.tpl ├── vagrantfile-win7x86-enterprise-ssh.tpl ├── vagrantfile-win7x86-enterprise.tpl ├── vagrantfile-win7x86-pro-cygwin.tpl ├── vagrantfile-win7x86-pro-ssh.tpl ├── vagrantfile-win7x86-pro.tpl ├── vagrantfile-win81x64-enterprise-cygwin.tpl ├── vagrantfile-win81x64-enterprise-ssh.tpl ├── vagrantfile-win81x64-enterprise.tpl ├── vagrantfile-win81x64-pro-cygwin.tpl ├── vagrantfile-win81x64-pro-ssh.tpl ├── vagrantfile-win81x64-pro.tpl ├── vagrantfile-win81x86-enterprise-cygwin.tpl ├── vagrantfile-win81x86-enterprise-ssh.tpl ├── vagrantfile-win81x86-enterprise.tpl ├── vagrantfile-win81x86-pro-cygwin.tpl ├── vagrantfile-win81x86-pro-ssh.tpl └── vagrantfile-win81x86-pro.tpl ├── win2008r2-datacenter-cygwin.json ├── win2008r2-datacenter-ssh.json ├── win2008r2-datacenter.json ├── win2008r2-enterprise-cygwin.json ├── win2008r2-enterprise-ssh.json ├── win2008r2-enterprise.json ├── win2008r2-standard-cygwin.json ├── win2008r2-standard-ssh.json ├── win2008r2-standard.json ├── win2008r2-web-cygwin.json ├── win2008r2-web-ssh.json ├── win2008r2-web.json ├── win2012-datacenter-cygwin.json ├── win2012-datacenter-ssh.json ├── win2012-datacenter.json ├── win2012-standard-cygwin.json ├── win2012-standard-ssh.json ├── win2012-standard.json ├── win2012r2-datacenter-cygwin.json ├── win2012r2-datacenter-ssh.json ├── win2012r2-datacenter.json ├── win2012r2-standard-cygwin.json ├── win2012r2-standard-ssh.json ├── win2012r2-standard.json ├── win2012r2-standardcore-cygwin.json ├── win2012r2-standardcore-ssh.json ├── win2012r2-standardcore.json ├── win2016-standard-cygwin.json ├── win2016-standard-ssh.json ├── win2016-standard.json ├── win7x64-enterprise-cygwin.json ├── win7x64-enterprise-ssh.json ├── win7x64-enterprise.json ├── win7x64-pro-cygwin.json ├── win7x64-pro-ssh.json ├── win7x64-pro.json ├── win7x86-enterprise-cygwin.json ├── win7x86-enterprise-ssh.json ├── win7x86-enterprise.json ├── win7x86-pro-cygwin.json ├── win7x86-pro-ssh.json ├── win7x86-pro.json ├── win81x64-enterprise-cygwin.json ├── win81x64-enterprise-ssh.json ├── win81x64-enterprise.json ├── win81x64-pro-cygwin.json ├── win81x64-pro-ssh.json ├── win81x64-pro.json ├── win81x86-enterprise-cygwin.json ├── win81x86-enterprise-ssh.json ├── win81x86-enterprise.json ├── win81x86-pro-cygwin.json ├── win81x86-pro-ssh.json ├── win81x86-pro.json ├── wip ├── win2008r2-standardcore-cygwin.json └── win2008r2-standardcore.json └── wsim ├── win2008 └── x86 │ ├── install_Windows Longhorn SERVERDATACENTER.clg │ ├── install_Windows Longhorn SERVERDATACENTERCORE.clg │ ├── install_Windows Longhorn SERVERENTERPRISE.clg │ ├── install_Windows Longhorn SERVERENTERPRISECORE.clg │ ├── install_Windows Longhorn SERVERSTANDARD.clg │ └── install_Windows Longhorn SERVERSTANDARDCORE.clg ├── win2008r2 └── x64 │ ├── install_Windows Server 2008 R2 SERVERDATACENTER.clg │ ├── install_Windows Server 2008 R2 SERVERDATACENTERCORE.clg │ ├── install_Windows Server 2008 R2 SERVERENTERPRISE.clg │ ├── install_Windows Server 2008 R2 SERVERENTERPRISECORE.clg │ ├── install_Windows Server 2008 R2 SERVERSTANDARD.clg │ ├── install_Windows Server 2008 R2 SERVERSTANDARDCORE.clg │ ├── install_Windows Server 2008 R2 SERVERWEB.clg │ └── install_Windows Server 2008 R2 SERVERWEBCORE.clg ├── win2012 └── x64 │ ├── install_Windows Server 2012 SERVERDATACENTER.clg │ ├── install_Windows Server 2012 SERVERDATACENTERCORE.clg │ ├── install_Windows Server 2012 SERVERSTANDARD.clg │ └── install_Windows Server 2012 SERVERSTANDARDCORE.clg ├── win2012r2update └── x64 │ ├── install_Windows Server 2012 R2 SERVERDATACENTER.clg │ ├── install_Windows Server 2012 R2 SERVERDATACENTERCORE.clg │ ├── install_Windows Server 2012 R2 SERVERSTANDARD.clg │ └── install_Windows Server 2012 R2 SERVERSTANDARDCORE.clg ├── win7 ├── x64 │ ├── install_Windows 7 ENTERPRISE.clg │ └── install_Windows 7 PROFESSIONAL.clg └── x86 │ ├── install_Windows 7 ENTERPRISE.clg │ └── install_Windows 7 PROFESSIONAL.clg ├── win81update ├── x64 │ ├── install_Windows 8.1 Enterprise.clg │ └── install_Windows 8.1 Pro.clg └── x86 │ ├── install_Windows 8.1 Enterprise.clg │ └── install_Windows 8.1 Pro.clg └── wineval ├── win10 ├── x64 │ └── install_Windows 10 Enterprise Evaluation.clg └── x86 │ └── install_Windows 10 Enterprise Evaluation.clg ├── win2012r2 ├── install_Windows Server 2012 R2 SERVERDATACENTER.clg ├── install_Windows Server 2012 R2 SERVERDATACENTERCORE.clg ├── install_Windows Server 2012 R2 SERVERSTANDARD.clg └── install_Windows Server 2012 R2 SERVERSTANDARDCORE.clg ├── win7 └── install_Windows 7 ENTERPRISE.clg └── win81 ├── x64 └── install_Windows 8.1 Enterprise Evaluation.clg └── x86 └── install_Windows 8.1 Enterprise Evaluation.clg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/.gitignore -------------------------------------------------------------------------------- /.windows/isos/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !Makefile 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /.windows/isos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/.windows/isos/Makefile -------------------------------------------------------------------------------- /.windows/provisions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !Makefile 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /.windows/provisions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/.windows/provisions/Makefile -------------------------------------------------------------------------------- /3rdparty/curl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/3rdparty/curl.exe -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.4 2 | -------------------------------------------------------------------------------- /bin/Makefile.local.caroline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/bin/Makefile.local.caroline -------------------------------------------------------------------------------- /bin/Makefile.local.caroline.vagrantcloud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/bin/Makefile.local.caroline.vagrantcloud -------------------------------------------------------------------------------- /bin/Makefile.local.winry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/bin/Makefile.local.winry -------------------------------------------------------------------------------- /bin/compress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/bin/compress.py -------------------------------------------------------------------------------- /bin/ssh-box.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/bin/ssh-box.sh -------------------------------------------------------------------------------- /bin/test-box.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/bin/test-box.sh -------------------------------------------------------------------------------- /bin/test-vagrantcloud-box.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/bin/test-vagrantcloud-box.sh -------------------------------------------------------------------------------- /bin/tweak-json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/bin/tweak-json.py -------------------------------------------------------------------------------- /bin/tweak-jsons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/bin/tweak-jsons.sh -------------------------------------------------------------------------------- /bin/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/bin/upload.sh -------------------------------------------------------------------------------- /box/virtualbox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/box/virtualbox/.gitignore -------------------------------------------------------------------------------- /box/vmware/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/box/vmware/.gitignore -------------------------------------------------------------------------------- /eval-win10x64-enterprise-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win10x64-enterprise-cygwin.json -------------------------------------------------------------------------------- /eval-win10x64-enterprise-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win10x64-enterprise-ssh.json -------------------------------------------------------------------------------- /eval-win10x64-enterprise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win10x64-enterprise.json -------------------------------------------------------------------------------- /eval-win10x86-enterprise-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win10x86-enterprise-cygwin.json -------------------------------------------------------------------------------- /eval-win10x86-enterprise-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win10x86-enterprise-ssh.json -------------------------------------------------------------------------------- /eval-win10x86-enterprise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win10x86-enterprise.json -------------------------------------------------------------------------------- /eval-win2008r2-datacenter-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win2008r2-datacenter-cygwin.json -------------------------------------------------------------------------------- /eval-win2008r2-datacenter-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win2008r2-datacenter-ssh.json -------------------------------------------------------------------------------- /eval-win2008r2-datacenter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win2008r2-datacenter.json -------------------------------------------------------------------------------- /eval-win2008r2-standard-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win2008r2-standard-cygwin.json -------------------------------------------------------------------------------- /eval-win2008r2-standard-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win2008r2-standard-ssh.json -------------------------------------------------------------------------------- /eval-win2008r2-standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win2008r2-standard.json -------------------------------------------------------------------------------- /eval-win2012r2-datacenter-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win2012r2-datacenter-cygwin.json -------------------------------------------------------------------------------- /eval-win2012r2-datacenter-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win2012r2-datacenter-ssh.json -------------------------------------------------------------------------------- /eval-win2012r2-datacenter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win2012r2-datacenter.json -------------------------------------------------------------------------------- /eval-win2012r2-standard-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win2012r2-standard-cygwin.json -------------------------------------------------------------------------------- /eval-win2012r2-standard-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win2012r2-standard-ssh.json -------------------------------------------------------------------------------- /eval-win2012r2-standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win2012r2-standard.json -------------------------------------------------------------------------------- /eval-win2016-standard-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win2016-standard-cygwin.json -------------------------------------------------------------------------------- /eval-win2016-standard-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win2016-standard-ssh.json -------------------------------------------------------------------------------- /eval-win2016-standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win2016-standard.json -------------------------------------------------------------------------------- /eval-win7x64-enterprise-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win7x64-enterprise-cygwin.json -------------------------------------------------------------------------------- /eval-win7x64-enterprise-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win7x64-enterprise-ssh.json -------------------------------------------------------------------------------- /eval-win7x64-enterprise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win7x64-enterprise.json -------------------------------------------------------------------------------- /eval-win7x86-enterprise-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win7x86-enterprise-cygwin.json -------------------------------------------------------------------------------- /eval-win7x86-enterprise-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win7x86-enterprise-ssh.json -------------------------------------------------------------------------------- /eval-win7x86-enterprise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win7x86-enterprise.json -------------------------------------------------------------------------------- /eval-win81x64-enterprise-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win81x64-enterprise-cygwin.json -------------------------------------------------------------------------------- /eval-win81x64-enterprise-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win81x64-enterprise-ssh.json -------------------------------------------------------------------------------- /eval-win81x64-enterprise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win81x64-enterprise.json -------------------------------------------------------------------------------- /eval-win81x86-enterprise-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win81x86-enterprise-cygwin.json -------------------------------------------------------------------------------- /eval-win81x86-enterprise-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win81x86-enterprise-ssh.json -------------------------------------------------------------------------------- /eval-win81x86-enterprise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/eval-win81x86-enterprise.json -------------------------------------------------------------------------------- /floppy/.gitignore: -------------------------------------------------------------------------------- 1 | _packer_config_local*.cmd 2 | -------------------------------------------------------------------------------- /floppy/00-run-all-scripts.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/00-run-all-scripts.cmd -------------------------------------------------------------------------------- /floppy/01-install-wget.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/01-install-wget.cmd -------------------------------------------------------------------------------- /floppy/_download.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/_download.cmd -------------------------------------------------------------------------------- /floppy/_packer_config.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/_packer_config.cmd -------------------------------------------------------------------------------- /floppy/_post_update_install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/_post_update_install.bat -------------------------------------------------------------------------------- /floppy/_uninstall-bitvisessh.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/_uninstall-bitvisessh.bat -------------------------------------------------------------------------------- /floppy/_uninstall-cygwin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/_uninstall-cygwin.bat -------------------------------------------------------------------------------- /floppy/autologon.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/autologon.bat -------------------------------------------------------------------------------- /floppy/bitvisessh.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/bitvisessh.bat -------------------------------------------------------------------------------- /floppy/bitvisessh.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/bitvisessh.cfg -------------------------------------------------------------------------------- /floppy/cygwin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/cygwin.bat -------------------------------------------------------------------------------- /floppy/cygwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/cygwin.sh -------------------------------------------------------------------------------- /floppy/disablewinupdate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/disablewinupdate.bat -------------------------------------------------------------------------------- /floppy/eval-win10x64-enterprise/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/eval-win10x64-enterprise/Autounattend.xml -------------------------------------------------------------------------------- /floppy/eval-win10x86-enterprise/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/eval-win10x86-enterprise/Autounattend.xml -------------------------------------------------------------------------------- /floppy/eval-win2012r2-datacenter/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/eval-win2012r2-datacenter/Autounattend.xml -------------------------------------------------------------------------------- /floppy/eval-win2012r2-standard/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/eval-win2012r2-standard/Autounattend.xml -------------------------------------------------------------------------------- /floppy/eval-win2016-standard/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/eval-win2016-standard/Autounattend.xml -------------------------------------------------------------------------------- /floppy/eval-win81x64-enterprise/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/eval-win81x64-enterprise/Autounattend.xml -------------------------------------------------------------------------------- /floppy/eval-win81x86-enterprise/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/eval-win81x86-enterprise/Autounattend.xml -------------------------------------------------------------------------------- /floppy/fixnetwork.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/fixnetwork.ps1 -------------------------------------------------------------------------------- /floppy/folderoptions.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/folderoptions.bat -------------------------------------------------------------------------------- /floppy/hotfix-KB2842230.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/hotfix-KB2842230.bat -------------------------------------------------------------------------------- /floppy/install-features.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/install-features.cmd -------------------------------------------------------------------------------- /floppy/install-winrm.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/install-winrm.cmd -------------------------------------------------------------------------------- /floppy/networkprompt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/networkprompt.bat -------------------------------------------------------------------------------- /floppy/openssh.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/openssh.bat -------------------------------------------------------------------------------- /floppy/pagefile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/pagefile.bat -------------------------------------------------------------------------------- /floppy/passwordchange.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/passwordchange.bat -------------------------------------------------------------------------------- /floppy/powerconfig.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/powerconfig.bat -------------------------------------------------------------------------------- /floppy/remove-features.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/remove-features.cmd -------------------------------------------------------------------------------- /floppy/slim_win10.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/slim_win10.bat -------------------------------------------------------------------------------- /floppy/time12h.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/time12h.bat -------------------------------------------------------------------------------- /floppy/time24h.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/time24h.bat -------------------------------------------------------------------------------- /floppy/uac-disable.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/uac-disable.bat -------------------------------------------------------------------------------- /floppy/uac-enable.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/uac-enable.bat -------------------------------------------------------------------------------- /floppy/unzip.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/unzip.vbs -------------------------------------------------------------------------------- /floppy/update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/update.bat -------------------------------------------------------------------------------- /floppy/upgrade-wua.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/upgrade-wua.bat -------------------------------------------------------------------------------- /floppy/win2008r2-datacenter/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/win2008r2-datacenter/Autounattend.xml -------------------------------------------------------------------------------- /floppy/win2008r2-enterprise/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/win2008r2-enterprise/Autounattend.xml -------------------------------------------------------------------------------- /floppy/win2008r2-standard/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/win2008r2-standard/Autounattend.xml -------------------------------------------------------------------------------- /floppy/win2008r2-standardcore/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/win2008r2-standardcore/Autounattend.xml -------------------------------------------------------------------------------- /floppy/win2008r2-web/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/win2008r2-web/Autounattend.xml -------------------------------------------------------------------------------- /floppy/win2012-datacenter/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/win2012-datacenter/Autounattend.xml -------------------------------------------------------------------------------- /floppy/win2012-standard/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/win2012-standard/Autounattend.xml -------------------------------------------------------------------------------- /floppy/win2012r2-datacenter/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/win2012r2-datacenter/Autounattend.xml -------------------------------------------------------------------------------- /floppy/win2012r2-standard/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/win2012r2-standard/Autounattend.xml -------------------------------------------------------------------------------- /floppy/win2012r2-standardcore/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/win2012r2-standardcore/Autounattend.xml -------------------------------------------------------------------------------- /floppy/win2016-standard/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/win2016-standard/Autounattend.xml -------------------------------------------------------------------------------- /floppy/win7x64-enterprise/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/win7x64-enterprise/Autounattend.xml -------------------------------------------------------------------------------- /floppy/win7x64-pro/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/win7x64-pro/Autounattend.xml -------------------------------------------------------------------------------- /floppy/win7x86-enterprise/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/win7x86-enterprise/Autounattend.xml -------------------------------------------------------------------------------- /floppy/win7x86-pro/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/win7x86-pro/Autounattend.xml -------------------------------------------------------------------------------- /floppy/win81x64-enterprise/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/win81x64-enterprise/Autounattend.xml -------------------------------------------------------------------------------- /floppy/win81x64-pro/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/win81x64-pro/Autounattend.xml -------------------------------------------------------------------------------- /floppy/win81x86-enterprise/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/win81x86-enterprise/Autounattend.xml -------------------------------------------------------------------------------- /floppy/win81x86-pro/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/win81x86-pro/Autounattend.xml -------------------------------------------------------------------------------- /floppy/zz-start-transports.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/zz-start-transports.cmd -------------------------------------------------------------------------------- /floppy/zzz-debug-log.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/floppy/zzz-debug-log.cmd -------------------------------------------------------------------------------- /script/01-install-handle.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/script/01-install-handle.cmd -------------------------------------------------------------------------------- /script/KB2999226.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/script/KB2999226.cmd -------------------------------------------------------------------------------- /script/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/script/clean.bat -------------------------------------------------------------------------------- /script/cmtool.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/script/cmtool.bat -------------------------------------------------------------------------------- /script/dump-logs.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/script/dump-logs.cmd -------------------------------------------------------------------------------- /script/enable-rdp.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/script/enable-rdp.cmd -------------------------------------------------------------------------------- /script/reboot.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/script/reboot.cmd -------------------------------------------------------------------------------- /script/regenerate-dotnet-cache.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/script/regenerate-dotnet-cache.cmd -------------------------------------------------------------------------------- /script/save-logs.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/script/save-logs.cmd -------------------------------------------------------------------------------- /script/save-temp-dirs.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/script/save-temp-dirs.cmd -------------------------------------------------------------------------------- /script/sdelete.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/script/sdelete.bat -------------------------------------------------------------------------------- /script/ultradefrag.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/script/ultradefrag.bat -------------------------------------------------------------------------------- /script/uninstall-7zip.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/script/uninstall-7zip.bat -------------------------------------------------------------------------------- /script/uninstall-cygwin.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/script/uninstall-cygwin.cmd -------------------------------------------------------------------------------- /script/uninstall-openssh.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/script/uninstall-openssh.cmd -------------------------------------------------------------------------------- /script/vagrant.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/script/vagrant.bat -------------------------------------------------------------------------------- /script/vmtool.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/script/vmtool.bat -------------------------------------------------------------------------------- /test/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/test/spec_helper.rb -------------------------------------------------------------------------------- /test/windows_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/test/windows_spec.rb -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win10x64-enterprise-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win10x64-enterprise-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win10x64-enterprise-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win10x64-enterprise-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win10x64-enterprise.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win10x64-enterprise.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win10x86-enterprise-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win10x86-enterprise-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win10x86-enterprise-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win10x86-enterprise-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win10x86-enterprise.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win10x86-enterprise.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win2008r2-datacenter-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win2008r2-datacenter-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win2008r2-datacenter-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win2008r2-datacenter-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win2008r2-datacenter.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win2008r2-datacenter.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win2008r2-standard-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win2008r2-standard-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win2008r2-standard-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win2008r2-standard-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win2008r2-standard.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win2008r2-standard.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win2012r2-datacenter-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win2012r2-datacenter-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win2012r2-datacenter-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win2012r2-datacenter-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win2012r2-datacenter.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win2012r2-datacenter.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win2012r2-standard-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win2012r2-standard-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win2012r2-standard-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win2012r2-standard-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win2012r2-standard.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win2012r2-standard.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win2016-standard-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win2016-standard-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win2016-standard-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win2016-standard-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win2016-standard.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win2016-standard.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win7x64-enterprise-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win7x64-enterprise-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win7x64-enterprise-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win7x64-enterprise-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win7x64-enterprise.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win7x64-enterprise.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win7x86-enterprise-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win7x86-enterprise-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win7x86-enterprise-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win7x86-enterprise-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win7x86-enterprise.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win7x86-enterprise.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win81x64-enterprise-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win81x64-enterprise-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win81x64-enterprise-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win81x64-enterprise-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win81x64-enterprise.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win81x64-enterprise.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win81x86-enterprise-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win81x86-enterprise-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win81x86-enterprise-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win81x86-enterprise-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-eval-win81x86-enterprise.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-eval-win81x86-enterprise.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2008r2-datacenter-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2008r2-datacenter-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2008r2-datacenter-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2008r2-datacenter-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2008r2-datacenter.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2008r2-datacenter.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2008r2-enterprise-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2008r2-enterprise-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2008r2-enterprise-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2008r2-enterprise-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2008r2-enterprise.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2008r2-enterprise.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2008r2-standard-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2008r2-standard-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2008r2-standard-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2008r2-standard-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2008r2-standard.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2008r2-standard.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2008r2-standardcore-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2008r2-standardcore-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2008r2-standardcore-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2008r2-standardcore-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2008r2-standardcore.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2008r2-standardcore.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2008r2-web-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2008r2-web-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2008r2-web-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2008r2-web-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2008r2-web.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2008r2-web.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2012-datacenter-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2012-datacenter-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2012-datacenter-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2012-datacenter-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2012-datacenter.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2012-datacenter.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2012-standard-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2012-standard-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2012-standard-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2012-standard-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2012-standard.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2012-standard.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2012r2-datacenter-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2012r2-datacenter-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2012r2-datacenter-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2012r2-datacenter-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2012r2-datacenter.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2012r2-datacenter.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2012r2-standard-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2012r2-standard-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2012r2-standard-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2012r2-standard-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2012r2-standard.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2012r2-standard.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2012r2-standardcore-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2012r2-standardcore-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2012r2-standardcore-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2012r2-standardcore-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2012r2-standardcore.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2012r2-standardcore.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2016-standard-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2016-standard-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2016-standard-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2016-standard-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win2016-standard.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win2016-standard.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win7x64-enterprise-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win7x64-enterprise-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win7x64-enterprise-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win7x64-enterprise-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win7x64-enterprise.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win7x64-enterprise.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win7x64-pro-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win7x64-pro-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win7x64-pro-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win7x64-pro-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win7x64-pro.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win7x64-pro.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win7x86-enterprise-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win7x86-enterprise-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win7x86-enterprise-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win7x86-enterprise-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win7x86-enterprise.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win7x86-enterprise.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win7x86-pro-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win7x86-pro-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win7x86-pro-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win7x86-pro-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win7x86-pro.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win7x86-pro.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win81x64-enterprise-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win81x64-enterprise-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win81x64-enterprise-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win81x64-enterprise-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win81x64-enterprise.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win81x64-enterprise.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win81x64-pro-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win81x64-pro-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win81x64-pro-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win81x64-pro-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win81x64-pro.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win81x64-pro.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win81x86-enterprise-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win81x86-enterprise-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win81x86-enterprise-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win81x86-enterprise-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win81x86-enterprise.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win81x86-enterprise.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win81x86-pro-cygwin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win81x86-pro-cygwin.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win81x86-pro-ssh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win81x86-pro-ssh.tpl -------------------------------------------------------------------------------- /tpl/vagrantfile-win81x86-pro.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/tpl/vagrantfile-win81x86-pro.tpl -------------------------------------------------------------------------------- /win2008r2-datacenter-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2008r2-datacenter-cygwin.json -------------------------------------------------------------------------------- /win2008r2-datacenter-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2008r2-datacenter-ssh.json -------------------------------------------------------------------------------- /win2008r2-datacenter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2008r2-datacenter.json -------------------------------------------------------------------------------- /win2008r2-enterprise-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2008r2-enterprise-cygwin.json -------------------------------------------------------------------------------- /win2008r2-enterprise-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2008r2-enterprise-ssh.json -------------------------------------------------------------------------------- /win2008r2-enterprise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2008r2-enterprise.json -------------------------------------------------------------------------------- /win2008r2-standard-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2008r2-standard-cygwin.json -------------------------------------------------------------------------------- /win2008r2-standard-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2008r2-standard-ssh.json -------------------------------------------------------------------------------- /win2008r2-standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2008r2-standard.json -------------------------------------------------------------------------------- /win2008r2-web-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2008r2-web-cygwin.json -------------------------------------------------------------------------------- /win2008r2-web-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2008r2-web-ssh.json -------------------------------------------------------------------------------- /win2008r2-web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2008r2-web.json -------------------------------------------------------------------------------- /win2012-datacenter-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2012-datacenter-cygwin.json -------------------------------------------------------------------------------- /win2012-datacenter-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2012-datacenter-ssh.json -------------------------------------------------------------------------------- /win2012-datacenter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2012-datacenter.json -------------------------------------------------------------------------------- /win2012-standard-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2012-standard-cygwin.json -------------------------------------------------------------------------------- /win2012-standard-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2012-standard-ssh.json -------------------------------------------------------------------------------- /win2012-standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2012-standard.json -------------------------------------------------------------------------------- /win2012r2-datacenter-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2012r2-datacenter-cygwin.json -------------------------------------------------------------------------------- /win2012r2-datacenter-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2012r2-datacenter-ssh.json -------------------------------------------------------------------------------- /win2012r2-datacenter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2012r2-datacenter.json -------------------------------------------------------------------------------- /win2012r2-standard-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2012r2-standard-cygwin.json -------------------------------------------------------------------------------- /win2012r2-standard-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2012r2-standard-ssh.json -------------------------------------------------------------------------------- /win2012r2-standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2012r2-standard.json -------------------------------------------------------------------------------- /win2012r2-standardcore-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2012r2-standardcore-cygwin.json -------------------------------------------------------------------------------- /win2012r2-standardcore-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2012r2-standardcore-ssh.json -------------------------------------------------------------------------------- /win2012r2-standardcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2012r2-standardcore.json -------------------------------------------------------------------------------- /win2016-standard-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2016-standard-cygwin.json -------------------------------------------------------------------------------- /win2016-standard-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2016-standard-ssh.json -------------------------------------------------------------------------------- /win2016-standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win2016-standard.json -------------------------------------------------------------------------------- /win7x64-enterprise-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win7x64-enterprise-cygwin.json -------------------------------------------------------------------------------- /win7x64-enterprise-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win7x64-enterprise-ssh.json -------------------------------------------------------------------------------- /win7x64-enterprise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win7x64-enterprise.json -------------------------------------------------------------------------------- /win7x64-pro-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win7x64-pro-cygwin.json -------------------------------------------------------------------------------- /win7x64-pro-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win7x64-pro-ssh.json -------------------------------------------------------------------------------- /win7x64-pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win7x64-pro.json -------------------------------------------------------------------------------- /win7x86-enterprise-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win7x86-enterprise-cygwin.json -------------------------------------------------------------------------------- /win7x86-enterprise-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win7x86-enterprise-ssh.json -------------------------------------------------------------------------------- /win7x86-enterprise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win7x86-enterprise.json -------------------------------------------------------------------------------- /win7x86-pro-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win7x86-pro-cygwin.json -------------------------------------------------------------------------------- /win7x86-pro-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win7x86-pro-ssh.json -------------------------------------------------------------------------------- /win7x86-pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win7x86-pro.json -------------------------------------------------------------------------------- /win81x64-enterprise-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win81x64-enterprise-cygwin.json -------------------------------------------------------------------------------- /win81x64-enterprise-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win81x64-enterprise-ssh.json -------------------------------------------------------------------------------- /win81x64-enterprise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win81x64-enterprise.json -------------------------------------------------------------------------------- /win81x64-pro-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win81x64-pro-cygwin.json -------------------------------------------------------------------------------- /win81x64-pro-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win81x64-pro-ssh.json -------------------------------------------------------------------------------- /win81x64-pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win81x64-pro.json -------------------------------------------------------------------------------- /win81x86-enterprise-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win81x86-enterprise-cygwin.json -------------------------------------------------------------------------------- /win81x86-enterprise-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win81x86-enterprise-ssh.json -------------------------------------------------------------------------------- /win81x86-enterprise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win81x86-enterprise.json -------------------------------------------------------------------------------- /win81x86-pro-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win81x86-pro-cygwin.json -------------------------------------------------------------------------------- /win81x86-pro-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win81x86-pro-ssh.json -------------------------------------------------------------------------------- /win81x86-pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/win81x86-pro.json -------------------------------------------------------------------------------- /wip/win2008r2-standardcore-cygwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wip/win2008r2-standardcore-cygwin.json -------------------------------------------------------------------------------- /wip/win2008r2-standardcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wip/win2008r2-standardcore.json -------------------------------------------------------------------------------- /wsim/win2008/x86/install_Windows Longhorn SERVERDATACENTER.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2008/x86/install_Windows Longhorn SERVERDATACENTER.clg -------------------------------------------------------------------------------- /wsim/win2008/x86/install_Windows Longhorn SERVERDATACENTERCORE.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2008/x86/install_Windows Longhorn SERVERDATACENTERCORE.clg -------------------------------------------------------------------------------- /wsim/win2008/x86/install_Windows Longhorn SERVERENTERPRISE.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2008/x86/install_Windows Longhorn SERVERENTERPRISE.clg -------------------------------------------------------------------------------- /wsim/win2008/x86/install_Windows Longhorn SERVERENTERPRISECORE.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2008/x86/install_Windows Longhorn SERVERENTERPRISECORE.clg -------------------------------------------------------------------------------- /wsim/win2008/x86/install_Windows Longhorn SERVERSTANDARD.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2008/x86/install_Windows Longhorn SERVERSTANDARD.clg -------------------------------------------------------------------------------- /wsim/win2008/x86/install_Windows Longhorn SERVERSTANDARDCORE.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2008/x86/install_Windows Longhorn SERVERSTANDARDCORE.clg -------------------------------------------------------------------------------- /wsim/win2008r2/x64/install_Windows Server 2008 R2 SERVERDATACENTER.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2008r2/x64/install_Windows Server 2008 R2 SERVERDATACENTER.clg -------------------------------------------------------------------------------- /wsim/win2008r2/x64/install_Windows Server 2008 R2 SERVERDATACENTERCORE.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2008r2/x64/install_Windows Server 2008 R2 SERVERDATACENTERCORE.clg -------------------------------------------------------------------------------- /wsim/win2008r2/x64/install_Windows Server 2008 R2 SERVERENTERPRISE.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2008r2/x64/install_Windows Server 2008 R2 SERVERENTERPRISE.clg -------------------------------------------------------------------------------- /wsim/win2008r2/x64/install_Windows Server 2008 R2 SERVERENTERPRISECORE.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2008r2/x64/install_Windows Server 2008 R2 SERVERENTERPRISECORE.clg -------------------------------------------------------------------------------- /wsim/win2008r2/x64/install_Windows Server 2008 R2 SERVERSTANDARD.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2008r2/x64/install_Windows Server 2008 R2 SERVERSTANDARD.clg -------------------------------------------------------------------------------- /wsim/win2008r2/x64/install_Windows Server 2008 R2 SERVERSTANDARDCORE.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2008r2/x64/install_Windows Server 2008 R2 SERVERSTANDARDCORE.clg -------------------------------------------------------------------------------- /wsim/win2008r2/x64/install_Windows Server 2008 R2 SERVERWEB.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2008r2/x64/install_Windows Server 2008 R2 SERVERWEB.clg -------------------------------------------------------------------------------- /wsim/win2008r2/x64/install_Windows Server 2008 R2 SERVERWEBCORE.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2008r2/x64/install_Windows Server 2008 R2 SERVERWEBCORE.clg -------------------------------------------------------------------------------- /wsim/win2012/x64/install_Windows Server 2012 SERVERDATACENTER.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2012/x64/install_Windows Server 2012 SERVERDATACENTER.clg -------------------------------------------------------------------------------- /wsim/win2012/x64/install_Windows Server 2012 SERVERDATACENTERCORE.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2012/x64/install_Windows Server 2012 SERVERDATACENTERCORE.clg -------------------------------------------------------------------------------- /wsim/win2012/x64/install_Windows Server 2012 SERVERSTANDARD.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2012/x64/install_Windows Server 2012 SERVERSTANDARD.clg -------------------------------------------------------------------------------- /wsim/win2012/x64/install_Windows Server 2012 SERVERSTANDARDCORE.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2012/x64/install_Windows Server 2012 SERVERSTANDARDCORE.clg -------------------------------------------------------------------------------- /wsim/win2012r2update/x64/install_Windows Server 2012 R2 SERVERDATACENTER.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2012r2update/x64/install_Windows Server 2012 R2 SERVERDATACENTER.clg -------------------------------------------------------------------------------- /wsim/win2012r2update/x64/install_Windows Server 2012 R2 SERVERDATACENTERCORE.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2012r2update/x64/install_Windows Server 2012 R2 SERVERDATACENTERCORE.clg -------------------------------------------------------------------------------- /wsim/win2012r2update/x64/install_Windows Server 2012 R2 SERVERSTANDARD.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2012r2update/x64/install_Windows Server 2012 R2 SERVERSTANDARD.clg -------------------------------------------------------------------------------- /wsim/win2012r2update/x64/install_Windows Server 2012 R2 SERVERSTANDARDCORE.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win2012r2update/x64/install_Windows Server 2012 R2 SERVERSTANDARDCORE.clg -------------------------------------------------------------------------------- /wsim/win7/x64/install_Windows 7 ENTERPRISE.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win7/x64/install_Windows 7 ENTERPRISE.clg -------------------------------------------------------------------------------- /wsim/win7/x64/install_Windows 7 PROFESSIONAL.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win7/x64/install_Windows 7 PROFESSIONAL.clg -------------------------------------------------------------------------------- /wsim/win7/x86/install_Windows 7 ENTERPRISE.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win7/x86/install_Windows 7 ENTERPRISE.clg -------------------------------------------------------------------------------- /wsim/win7/x86/install_Windows 7 PROFESSIONAL.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win7/x86/install_Windows 7 PROFESSIONAL.clg -------------------------------------------------------------------------------- /wsim/win81update/x64/install_Windows 8.1 Enterprise.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win81update/x64/install_Windows 8.1 Enterprise.clg -------------------------------------------------------------------------------- /wsim/win81update/x64/install_Windows 8.1 Pro.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win81update/x64/install_Windows 8.1 Pro.clg -------------------------------------------------------------------------------- /wsim/win81update/x86/install_Windows 8.1 Enterprise.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win81update/x86/install_Windows 8.1 Enterprise.clg -------------------------------------------------------------------------------- /wsim/win81update/x86/install_Windows 8.1 Pro.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/win81update/x86/install_Windows 8.1 Pro.clg -------------------------------------------------------------------------------- /wsim/wineval/win10/x64/install_Windows 10 Enterprise Evaluation.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/wineval/win10/x64/install_Windows 10 Enterprise Evaluation.clg -------------------------------------------------------------------------------- /wsim/wineval/win10/x86/install_Windows 10 Enterprise Evaluation.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/wineval/win10/x86/install_Windows 10 Enterprise Evaluation.clg -------------------------------------------------------------------------------- /wsim/wineval/win2012r2/install_Windows Server 2012 R2 SERVERDATACENTER.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/wineval/win2012r2/install_Windows Server 2012 R2 SERVERDATACENTER.clg -------------------------------------------------------------------------------- /wsim/wineval/win2012r2/install_Windows Server 2012 R2 SERVERDATACENTERCORE.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/wineval/win2012r2/install_Windows Server 2012 R2 SERVERDATACENTERCORE.clg -------------------------------------------------------------------------------- /wsim/wineval/win2012r2/install_Windows Server 2012 R2 SERVERSTANDARD.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/wineval/win2012r2/install_Windows Server 2012 R2 SERVERSTANDARD.clg -------------------------------------------------------------------------------- /wsim/wineval/win2012r2/install_Windows Server 2012 R2 SERVERSTANDARDCORE.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/wineval/win2012r2/install_Windows Server 2012 R2 SERVERSTANDARDCORE.clg -------------------------------------------------------------------------------- /wsim/wineval/win7/install_Windows 7 ENTERPRISE.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/wineval/win7/install_Windows 7 ENTERPRISE.clg -------------------------------------------------------------------------------- /wsim/wineval/win81/x64/install_Windows 8.1 Enterprise Evaluation.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/wineval/win81/x64/install_Windows 8.1 Enterprise Evaluation.clg -------------------------------------------------------------------------------- /wsim/wineval/win81/x86/install_Windows 8.1 Enterprise Evaluation.clg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxcutter/windows/HEAD/wsim/wineval/win81/x86/install_Windows 8.1 Enterprise Evaluation.clg --------------------------------------------------------------------------------