Changing the order of images in the ISO

clarensio

Active Member
Is there a way to change the display order (related to importing install.wim into the ISO) with NTLite - I haven't found it - or even with something else?

To understand from this
NTLitePre.jpg

so...

NTLitePost.jpg


It's not an important thing but, as you well know, "the eye also wants its part..."
 
You export individual images, and build a new WIM file in the "correct" order.

Someone posted a short script on MDL to simplify the process. Download wimlib.
Code:
@echo off
set "ChosenIndexes=1 4 2 5 3 6" && for %%# in (%ChosenIndexes%) do (.\wimlib-imagex.exe export "D:\install.wim" %%# "D:\install1.wim" --compress=lzx:100 --recompress)
del D:\install.wim /f /q
ren D:\install1.wim install.wim
 
Back
Top