Skip to content

Instantly share code, notes, and snippets.

@MitchRatquest
Created December 27, 2018 20:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MitchRatquest/bbfcdc9996954f9c77b5de17acca8981 to your computer and use it in GitHub Desktop.
Save MitchRatquest/bbfcdc9996954f9c77b5de17acca8981 to your computer and use it in GitHub Desktop.
ipxe windows 10 boot config
#!ipxe
set serverip 172.18.0.1
set tftpboot tftp://${serverip}
:menu
menu iPXE boot menu
item --key w win10 Le Windows 10 Boot
choose os
goto ${os}
:win10
echo Booting Windows Installer...
set root-path ${tftpboot}/winimg
kernel ${root-path}/wimboot gui
set root-path ${tftpboot}/winimg/img_contents
initrd ${root-path}/boot/bcd BCD
initrd ${root-path}/boot/boot.sdi boot.sdi
initrd ${root-path}/sources/boot.wim boot.wim
initrd ${root-path}/boot/fonts/segmono_boot.ttf segmono_boot.ttf
initrd ${root-path}/boot/fonts/segoe_slboot.ttf segoe_slboot.ttf
initrd ${root-path}/boot/fonts/segoen_slboot.ttf segoen_slboot.ttf
initrd ${root-path}/boot/fonts/wgl4_boot.ttf wgl4_boot.ttf
boot || goto failed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment