├── .gitignore ├── Readme.md ├── answer_files ├── 2016 │ └── Autounattend.xml ├── 2008_r2 │ └── Autounattend.xml └── 2012_r2 │ └── Autounattend.xml ├── scripts ├── Install-Net35.ps1 ├── Install-Net461.ps1 ├── Install-Nuget.ps1 ├── Install-PSModules.ps1 ├── Install-VMwareTools.ps1 ├── Install-WMF4.ps1 ├── Install-WMF5.ps1 ├── Install-WinUpdates.ps1 ├── Invoke-Defrag.ps1 ├── Remove-UpdateCache.ps1 ├── Reset-EmptySpace.ps1 ├── Set-WMF5SysPrepRegFix.ps1 ├── Set-WinRM.ps1 └── Start-Shutdown.bat ├── variables-global-template.json ├── vsphere-2008r2s-template.json ├── vsphere-2012r2s-template.json └── vsphere-2016s-template.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/Readme.md -------------------------------------------------------------------------------- /answer_files/2008_r2/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/answer_files/2008_r2/Autounattend.xml -------------------------------------------------------------------------------- /answer_files/2012_r2/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/answer_files/2012_r2/Autounattend.xml -------------------------------------------------------------------------------- /answer_files/2016/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/answer_files/2016/Autounattend.xml -------------------------------------------------------------------------------- /scripts/Install-Net35.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/scripts/Install-Net35.ps1 -------------------------------------------------------------------------------- /scripts/Install-Net461.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/scripts/Install-Net461.ps1 -------------------------------------------------------------------------------- /scripts/Install-Nuget.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/scripts/Install-Nuget.ps1 -------------------------------------------------------------------------------- /scripts/Install-PSModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/scripts/Install-PSModules.ps1 -------------------------------------------------------------------------------- /scripts/Install-VMwareTools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/scripts/Install-VMwareTools.ps1 -------------------------------------------------------------------------------- /scripts/Install-WMF4.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/scripts/Install-WMF4.ps1 -------------------------------------------------------------------------------- /scripts/Install-WMF5.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/scripts/Install-WMF5.ps1 -------------------------------------------------------------------------------- /scripts/Install-WinUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/scripts/Install-WinUpdates.ps1 -------------------------------------------------------------------------------- /scripts/Invoke-Defrag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/scripts/Invoke-Defrag.ps1 -------------------------------------------------------------------------------- /scripts/Remove-UpdateCache.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/scripts/Remove-UpdateCache.ps1 -------------------------------------------------------------------------------- /scripts/Reset-EmptySpace.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/scripts/Reset-EmptySpace.ps1 -------------------------------------------------------------------------------- /scripts/Set-WMF5SysPrepRegFix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/scripts/Set-WMF5SysPrepRegFix.ps1 -------------------------------------------------------------------------------- /scripts/Set-WinRM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/scripts/Set-WinRM.ps1 -------------------------------------------------------------------------------- /scripts/Start-Shutdown.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/scripts/Start-Shutdown.bat -------------------------------------------------------------------------------- /variables-global-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/variables-global-template.json -------------------------------------------------------------------------------- /vsphere-2008r2s-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/vsphere-2008r2s-template.json -------------------------------------------------------------------------------- /vsphere-2012r2s-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/vsphere-2012r2s-template.json -------------------------------------------------------------------------------- /vsphere-2016s-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeypiccola/packer-vmware-templates/HEAD/vsphere-2016s-template.json --------------------------------------------------------------------------------