The following warnings occurred:
Warning [2] count(): Parameter must be an array or an object that implements Countable - Line: 807 - File: showthread.php PHP 7.3.15 (Linux)
File Line Function
/showthread.php 807 errorHandler->error





Post Reply 
 
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
iPXE & Windows 10
2020-07-23, 14:08
Post: #1
iPXE & Windows 10
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?
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
iPXE & Windows 10 - vmelis - 2020-07-23 14:08



User(s) browsing this thread: 1 Guest(s)