iPXE discussion forum
iPXE with FOG and SCCM 2016, wim not loading all the way - 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 with FOG and SCCM 2016, wim not loading all the way (/showthread.php?tid=12665)



iPXE with FOG and SCCM 2016, wim not loading all the way - dabomb311@gmail.com - 2018-08-02 00:00

I am trying to boot a wim image (O/S Ver 10.0.16299.15) with iPXE and FOG using these settings:

kernel http://${fog-ip}/sccm2/wimboot gui
initrd http://${fog-ip}/sccm2/boot/BCD BCD
initrd http://${fog-ip}/sccm2/boot/boot.sdi boot.sdi
initrd http://${fog-ip}/sccm2/sources/boot.wim boot.wim
boot

and it boots into the wim and says show the background and the command prompt window shows "The DNS client service is starting" and then it just reboots and does not load the task sequence prompt.

followed this: http://ipxe.org/howto/sccm, but took out bootmgr

I have another sccm, wim image (O/S/ Ver 10.0.015063.0) that works perfectly. Does anyone know of anything with the new o/s version of the wim?

Thanks


RE: iPXE with FOG and SCCM 2016, wim not loading all the way - NiKiZe - 2018-08-02 09:33

If I understand it correcly you have modified:
winpeshl.ini to point to bootstrap.vbs ?

What happens here is that once bootstrap.vbs exits it also triggers winpe to exit
So most likely the vbs script fails.

It might be easier to use cmd/bat files, just having pause at the end of the file will give you time to read the error before exit.
see http://ipxe.org/howto/winpe

For debugging purposes I usually have a
Code:
start cmd
in the beginning of that file - this opens a new separate cmd prompt for ease of debugging (there is always shift+F10, but sometimes it is easier to have it open by default.