├── .gitignore ├── LICENSE ├── README.md ├── linux └── rhel8 │ ├── http │ └── ks.cfg │ ├── rhel8.pkr.hcl │ └── scripts │ └── cleanup.sh └── windows ├── bootfiles ├── win2016 │ ├── datacenter │ │ └── autounattend.xml │ ├── datacentercore │ │ └── autounattend.xml │ ├── standard │ │ └── autounattend.xml │ └── standardcore │ │ └── autounattend.xml ├── win2019 │ ├── datacenter │ │ └── autounattend.xml │ ├── datacentercore │ │ └── autounattend.xml │ ├── standard │ │ └── autounattend.xml │ └── standardcore │ │ └── autounattend.xml └── win2022 │ ├── datacenter │ └── autounattend.xml │ ├── datacentercore │ └── autounattend.xml │ ├── standard │ └── autounattend.xml │ └── standardcore │ └── autounattend.xml ├── build ├── example.pkrvar.hcl ├── win2016 │ ├── variables.pkr.hcl │ ├── win2016.auto.pkrvars.hcl │ └── win2016.pkr.hcl ├── win2019 │ ├── variables.pkr.hcl │ ├── win2019.auto.pkrvars.hcl │ └── win2019.pkr.hcl └── win2022 │ ├── variables.pkr.hcl │ ├── win2022.auto.pkrvars.hcl │ └── win2022.pkr.hcl └── scripts ├── common ├── initial-setup.ps1 └── install-vmtools64.cmd ├── win2016 ├── config-os.ps1 ├── disable-services.ps1 ├── disable-tls.ps1 └── remove-features.ps1 ├── win2019 ├── config-os.ps1 ├── disable-services.ps1 ├── disable-tls.ps1 └── remove-features.ps1 └── win2022 ├── config-os.ps1 ├── disable-services.ps1 ├── disable-tls.ps1 └── remove-features.ps1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/README.md -------------------------------------------------------------------------------- /linux/rhel8/http/ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/linux/rhel8/http/ks.cfg -------------------------------------------------------------------------------- /linux/rhel8/rhel8.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/linux/rhel8/rhel8.pkr.hcl -------------------------------------------------------------------------------- /linux/rhel8/scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/linux/rhel8/scripts/cleanup.sh -------------------------------------------------------------------------------- /windows/bootfiles/win2016/datacenter/autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/bootfiles/win2016/datacenter/autounattend.xml -------------------------------------------------------------------------------- /windows/bootfiles/win2016/datacentercore/autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/bootfiles/win2016/datacentercore/autounattend.xml -------------------------------------------------------------------------------- /windows/bootfiles/win2016/standard/autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/bootfiles/win2016/standard/autounattend.xml -------------------------------------------------------------------------------- /windows/bootfiles/win2016/standardcore/autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/bootfiles/win2016/standardcore/autounattend.xml -------------------------------------------------------------------------------- /windows/bootfiles/win2019/datacenter/autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/bootfiles/win2019/datacenter/autounattend.xml -------------------------------------------------------------------------------- /windows/bootfiles/win2019/datacentercore/autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/bootfiles/win2019/datacentercore/autounattend.xml -------------------------------------------------------------------------------- /windows/bootfiles/win2019/standard/autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/bootfiles/win2019/standard/autounattend.xml -------------------------------------------------------------------------------- /windows/bootfiles/win2019/standardcore/autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/bootfiles/win2019/standardcore/autounattend.xml -------------------------------------------------------------------------------- /windows/bootfiles/win2022/datacenter/autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/bootfiles/win2022/datacenter/autounattend.xml -------------------------------------------------------------------------------- /windows/bootfiles/win2022/datacentercore/autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/bootfiles/win2022/datacentercore/autounattend.xml -------------------------------------------------------------------------------- /windows/bootfiles/win2022/standard/autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/bootfiles/win2022/standard/autounattend.xml -------------------------------------------------------------------------------- /windows/bootfiles/win2022/standardcore/autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/bootfiles/win2022/standardcore/autounattend.xml -------------------------------------------------------------------------------- /windows/build/example.pkrvar.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/build/example.pkrvar.hcl -------------------------------------------------------------------------------- /windows/build/win2016/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/build/win2016/variables.pkr.hcl -------------------------------------------------------------------------------- /windows/build/win2016/win2016.auto.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/build/win2016/win2016.auto.pkrvars.hcl -------------------------------------------------------------------------------- /windows/build/win2016/win2016.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/build/win2016/win2016.pkr.hcl -------------------------------------------------------------------------------- /windows/build/win2019/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/build/win2019/variables.pkr.hcl -------------------------------------------------------------------------------- /windows/build/win2019/win2019.auto.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/build/win2019/win2019.auto.pkrvars.hcl -------------------------------------------------------------------------------- /windows/build/win2019/win2019.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/build/win2019/win2019.pkr.hcl -------------------------------------------------------------------------------- /windows/build/win2022/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/build/win2022/variables.pkr.hcl -------------------------------------------------------------------------------- /windows/build/win2022/win2022.auto.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/build/win2022/win2022.auto.pkrvars.hcl -------------------------------------------------------------------------------- /windows/build/win2022/win2022.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/build/win2022/win2022.pkr.hcl -------------------------------------------------------------------------------- /windows/scripts/common/initial-setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/scripts/common/initial-setup.ps1 -------------------------------------------------------------------------------- /windows/scripts/common/install-vmtools64.cmd: -------------------------------------------------------------------------------- 1 | rem Silent Mode, Basic UI, no Reboot 2 | E:\setup64.exe /s /v "/qb REBOOT=R" -------------------------------------------------------------------------------- /windows/scripts/win2016/config-os.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/scripts/win2016/config-os.ps1 -------------------------------------------------------------------------------- /windows/scripts/win2016/disable-services.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/scripts/win2016/disable-services.ps1 -------------------------------------------------------------------------------- /windows/scripts/win2016/disable-tls.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/scripts/win2016/disable-tls.ps1 -------------------------------------------------------------------------------- /windows/scripts/win2016/remove-features.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/scripts/win2016/remove-features.ps1 -------------------------------------------------------------------------------- /windows/scripts/win2019/config-os.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/scripts/win2019/config-os.ps1 -------------------------------------------------------------------------------- /windows/scripts/win2019/disable-services.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/scripts/win2019/disable-services.ps1 -------------------------------------------------------------------------------- /windows/scripts/win2019/disable-tls.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/scripts/win2019/disable-tls.ps1 -------------------------------------------------------------------------------- /windows/scripts/win2019/remove-features.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/scripts/win2019/remove-features.ps1 -------------------------------------------------------------------------------- /windows/scripts/win2022/config-os.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/scripts/win2022/config-os.ps1 -------------------------------------------------------------------------------- /windows/scripts/win2022/disable-services.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/scripts/win2022/disable-services.ps1 -------------------------------------------------------------------------------- /windows/scripts/win2022/disable-tls.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/scripts/win2022/disable-tls.ps1 -------------------------------------------------------------------------------- /windows/scripts/win2022/remove-features.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwestwater/packer-vsphere-iso/HEAD/windows/scripts/win2022/remove-features.ps1 --------------------------------------------------------------------------------