Changing the order of images in the ISO

clarensio

Active Member
Messages
368
Reaction score
98
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
 
You export individual images, and build a new WIM file in the "correct" order.
This is exactly how I currently get the order I like,

I'll try the script you gave me.

Thank you, as always, you are irreplaceable :)
 
Back
Top