├── .gitignore ├── README.md ├── Vagrantfile ├── boot.ipxe ├── create_empty_box.sh ├── gateway.sh ├── network.png ├── network.uxf └── windows-server-2022 ├── startup.ps1 ├── unattend-bios.xml ├── unattend-uefi.xml └── winpeshl.ini /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant/ 2 | tmp/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/pxe-vagrant/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/pxe-vagrant/HEAD/Vagrantfile -------------------------------------------------------------------------------- /boot.ipxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/pxe-vagrant/HEAD/boot.ipxe -------------------------------------------------------------------------------- /create_empty_box.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/pxe-vagrant/HEAD/create_empty_box.sh -------------------------------------------------------------------------------- /gateway.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/pxe-vagrant/HEAD/gateway.sh -------------------------------------------------------------------------------- /network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/pxe-vagrant/HEAD/network.png -------------------------------------------------------------------------------- /network.uxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/pxe-vagrant/HEAD/network.uxf -------------------------------------------------------------------------------- /windows-server-2022/startup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/pxe-vagrant/HEAD/windows-server-2022/startup.ps1 -------------------------------------------------------------------------------- /windows-server-2022/unattend-bios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/pxe-vagrant/HEAD/windows-server-2022/unattend-bios.xml -------------------------------------------------------------------------------- /windows-server-2022/unattend-uefi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/pxe-vagrant/HEAD/windows-server-2022/unattend-uefi.xml -------------------------------------------------------------------------------- /windows-server-2022/winpeshl.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgl/pxe-vagrant/HEAD/windows-server-2022/winpeshl.ini --------------------------------------------------------------------------------