iPXE discussion forum
WinRE - Printable Version

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



WinRE - astrapi - 2013-02-26 21:21

Hello,

i boot a Winre.wim file from my server, with this script

#!ipxe

Code:
cpuid --ext 29 && set arch amd64 || set arch x86
kernel wimboot
initrd ${arch}/ISO/bootmgr       bootmgr
initrd ${arch}/ISO/boot/bcd      BCD
initrd ${arch}/ISO/boot/boot.sdi boot.sdi
initrd ${arch}/Winre.wim         boot.wim
boot

The image boot. when i run the "c:\windows\system32\bmrui.exe" it crash with

"The system can't find the file. (0x800700002)"

How can i run "bmrui.exe"?


RE: WinRE - robinsmidsrod - 2013-02-27 08:37

I suggest you look in the appropriate windows system log or run a debugger tool to figure out what file it is looking for. If that file is not on the mounted volume, there is your clue. Not all ISOs or WIMs can be network-booted without issues.

Also, where did you get winre.wim from?


RE: WinRE - astrapi - 2013-02-27 11:55

(2013-02-27 08:37)robinsmidsrod Wrote:  Also, where did you get winre.wim from?

The winre.wim is from a repair disk generated by windows 7.


RE: WinRE - robinsmidsrod - 2013-02-28 13:36

Are you sure the winre.wim is supposed to work in standalone mode, and that the ISO generated doesn't contain more files needed after the .wim is booted? If so, it wouldn't be easy to make it work properly with iPXE/wimboot.