├── .gitignore ├── README.md ├── answer_files ├── win10 │ └── Autounattend.xml ├── win2012r2 │ └── Autounattend.xml ├── win2012r2core │ └── Autounattend.xml ├── win2016std │ └── Autounattend.xml └── win2016stdcore │ └── Autounattend.xml ├── floppy ├── PackerShutdown.bat ├── postunattend.xml └── winrm.ps1 ├── scripts ├── clean_and_scrub.ps1 ├── install_chocolatey.ps1 ├── install_oracle_guest_additions.ps1 ├── install_ps5.ps1 ├── install_windows_updates.ps1 ├── run_ngen.ps1 └── save_shutdown_command.ps1 └── vagrantfile-windows.template /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattHodge/PackerTemplates/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattHodge/PackerTemplates/HEAD/README.md -------------------------------------------------------------------------------- /answer_files/win10/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattHodge/PackerTemplates/HEAD/answer_files/win10/Autounattend.xml -------------------------------------------------------------------------------- /answer_files/win2012r2/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattHodge/PackerTemplates/HEAD/answer_files/win2012r2/Autounattend.xml -------------------------------------------------------------------------------- /answer_files/win2012r2core/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattHodge/PackerTemplates/HEAD/answer_files/win2012r2core/Autounattend.xml -------------------------------------------------------------------------------- /answer_files/win2016std/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattHodge/PackerTemplates/HEAD/answer_files/win2016std/Autounattend.xml -------------------------------------------------------------------------------- /answer_files/win2016stdcore/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattHodge/PackerTemplates/HEAD/answer_files/win2016stdcore/Autounattend.xml -------------------------------------------------------------------------------- /floppy/PackerShutdown.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattHodge/PackerTemplates/HEAD/floppy/PackerShutdown.bat -------------------------------------------------------------------------------- /floppy/postunattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattHodge/PackerTemplates/HEAD/floppy/postunattend.xml -------------------------------------------------------------------------------- /floppy/winrm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattHodge/PackerTemplates/HEAD/floppy/winrm.ps1 -------------------------------------------------------------------------------- /scripts/clean_and_scrub.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattHodge/PackerTemplates/HEAD/scripts/clean_and_scrub.ps1 -------------------------------------------------------------------------------- /scripts/install_chocolatey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattHodge/PackerTemplates/HEAD/scripts/install_chocolatey.ps1 -------------------------------------------------------------------------------- /scripts/install_oracle_guest_additions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattHodge/PackerTemplates/HEAD/scripts/install_oracle_guest_additions.ps1 -------------------------------------------------------------------------------- /scripts/install_ps5.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattHodge/PackerTemplates/HEAD/scripts/install_ps5.ps1 -------------------------------------------------------------------------------- /scripts/install_windows_updates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattHodge/PackerTemplates/HEAD/scripts/install_windows_updates.ps1 -------------------------------------------------------------------------------- /scripts/run_ngen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattHodge/PackerTemplates/HEAD/scripts/run_ngen.ps1 -------------------------------------------------------------------------------- /scripts/save_shutdown_command.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattHodge/PackerTemplates/HEAD/scripts/save_shutdown_command.ps1 -------------------------------------------------------------------------------- /vagrantfile-windows.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattHodge/PackerTemplates/HEAD/vagrantfile-windows.template --------------------------------------------------------------------------------