Combination of different architectures into an ESD file

Comments, questions, bug reports, etc.
Post Reply
User avatar
Pavla
Posts: 3
Joined: Mon Apr 24, 2023 12:49 am

Combination of different architectures into an ESD file

Post by Pavla »

Hi Hi,

I'm trying to combine x86 + x64 + A64 (ARM)

But I am getting an error:

Code: Select all

[ERROR] There is already an image named "Windows 10 Home" in the destination WIM
ERROR: Exiting with error code 11:
       Tried to add an image with a name that is already in use.

How can I combine different architectures into one ESD file?
https://pastebin.com/raw/HE4acgEb
https://pastebin.com/raw/QVek7xy1
https://pastebin.com/raw/tYtzc2ef
synchronicity
Site Admin
Posts: 472
Joined: Sun Aug 02, 2015 10:31 pm

Re: Combination of different architectures into an ESD file

Post by synchronicity »

You need to assign different names to the images, or make them unnamed. See the documentation for wimexport for how to do this: https://wimlib.net/man1/wimexport.html
User avatar
Pavla
Posts: 3
Joined: Mon Apr 24, 2023 12:49 am

Re: Combination of different architectures into an ESD file

Post by Pavla »

Code: Select all

wimlib-imagex.exe export "C:\Users\Windows\Desktop\win\win10esd\19045.2486.230107-0437.22h2_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd" 4 --compress=LZMS --solid "C:\Users\Windows\Desktop\win\install.esd"
wimlib-imagex.exe export "C:\Users\Windows\Desktop\win\win10esd\19045.2486.230107-0437.22h2_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd" 4 --compress=LZMS --solid "C:\Users\Windows\Desktop\win\install.esd"
I don't see the option to name or name, how do I do this?
synchronicity
Site Admin
Posts: 472
Joined: Sun Aug 02, 2015 10:31 pm

Re: Combination of different architectures into an ESD file

Post by synchronicity »

The syntax for wimexport is:

Code: Select all

wimexport SRC_WIMFILE SRC_IMAGE DEST_WIMFILE [DEST_IMAGE_NAME [DEST_IMAGE_DESC]] [OPTION...]
So, for example

Code: Select all

wimexport src.wim 1 dst.wim "foo"
... would export image 1 from src.wim into dst.wim and assign it the name "foo".
User avatar
Pavla
Posts: 3
Joined: Mon Apr 24, 2023 12:49 am

Re: Combination of different architectures into an ESD file

Post by Pavla »

ok works :o
Post Reply