iPXE discussion forum
iPXE & Windows 10 - Printable Version

+- iPXE discussion forum (https://forum.ipxe.org)
+-- Forum: iPXE user forums (/forumdisplay.php?fid=1)
+--- Forum: General (/forumdisplay.php?fid=2)
+--- Thread: iPXE & Windows 10 (/showthread.php?tid=25335)



iPXE & Windows 10 - vmelis - 2020-07-23 14:08

Hi. First this what I have done so far.
1) I have build ipxe.efi with embeded script
Code:
#!ipxe
dhcp
chain http://192.168.1.5/boot.php
2)created the boot.php with a simple menu
Code:
#!ipxe

set menu-timeout 5000
set submenu-timeout${menu-timeout}

isset ${menu-default} || set menu-default exit

#console --picture http://192.168.1.5/ipxe.png

##MAIN-MENU##
:start
menu Welcome to my menu
item http Boot over HTTP
item tftp Boot over TFTP
item reboot Reboot
choose --default exit --timeout 30000 target && goto ${target}

:http
kernel wimboot
initrd http://192.168.1.5/boot/bcd
initrd http://192.168.1.5/boot/boot.sdi
initrd http://192.168.1.5/sources/boot.wim
boot

:tftp
kernel wimboot
initrd /boot/bcd
initrd /boot/boot.sdi
initrd /sources/boot.wim
boot

:reboot
reboot

:exit
exit

3)I have downloaded the latest wimboot and copied all the contents of Win10 installation DVD.

PC boots in UEFI mode and loads my menu. I choose http, it loads the setup and the I get this error:
[Image: DLXQN6h]

Any ideas from here?