WIMJOIN(1) | User Commands | WIMJOIN(1) |
wimjoin- Join a split WIM into a standalone WIM
wimjoin [OPTION...] OUT_WIMFILE SPLIT_WIM_PART...
wimjoin, or equivalently wimlib-imagex join, joins the SPLIT_WIM_PARTs into a standalone (one-part) WIM OUT_WIMFILE. All parts of the split WIM must be specified; you probably want to do so using a shell wildcard.
Join a split WIM, with the parts named `windows*.swm' where the * is anything (usually the number of the part, except for the first part which may have no number), and write the joined WIM to the file `windows.wim'.
wimjoin windows.wim windows*.swm
Both non-pipable and pipable split WIMs may be joined.
wimjoin is roughly equivalent to:
wimexport SWM_PART_1 --ref="SWM_GLOB" all OUT_WIMFILE
September 2022 | wimlib 1.13.6 |