├── .gitignore ├── .gitlab-ci.yml ├── CHANGELOG ├── LICENSE ├── README.md ├── resources ├── configs │ ├── autounattend.xml │ └── sysprep-autounattend.xml └── scripts │ ├── adjustments.ps1 │ ├── cleanup.ps1 │ ├── install-vmware-tools-from-iso.ps1 │ └── win-update.ps1 ├── variables.pkr.hcl └── ws2022.pkr.hcl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanZ8n/packer-ws2022/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanZ8n/packer-ws2022/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanZ8n/packer-ws2022/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanZ8n/packer-ws2022/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanZ8n/packer-ws2022/HEAD/README.md -------------------------------------------------------------------------------- /resources/configs/autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanZ8n/packer-ws2022/HEAD/resources/configs/autounattend.xml -------------------------------------------------------------------------------- /resources/configs/sysprep-autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanZ8n/packer-ws2022/HEAD/resources/configs/sysprep-autounattend.xml -------------------------------------------------------------------------------- /resources/scripts/adjustments.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanZ8n/packer-ws2022/HEAD/resources/scripts/adjustments.ps1 -------------------------------------------------------------------------------- /resources/scripts/cleanup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanZ8n/packer-ws2022/HEAD/resources/scripts/cleanup.ps1 -------------------------------------------------------------------------------- /resources/scripts/install-vmware-tools-from-iso.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanZ8n/packer-ws2022/HEAD/resources/scripts/install-vmware-tools-from-iso.ps1 -------------------------------------------------------------------------------- /resources/scripts/win-update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanZ8n/packer-ws2022/HEAD/resources/scripts/win-update.ps1 -------------------------------------------------------------------------------- /variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanZ8n/packer-ws2022/HEAD/variables.pkr.hcl -------------------------------------------------------------------------------- /ws2022.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanZ8n/packer-ws2022/HEAD/ws2022.pkr.hcl --------------------------------------------------------------------------------