Convert ESD to WIM
Converting an ESD file to WIM file for upgrade packages: an odd thing to do with SCCM.
Nevertheless.
If you already have an iso downloaded from VLSC or the Microsoft site, this is fairly straightforward.
- Mount .iso file.
- Copy .\sources\install.esd from the mount to C:\temp\ (doesn't matter, but make note of location).
- Open command prompt as administrator, and cd to C:\temp
- Run command:
dism /get-wiminfo /wimfile:install.esd - You should get a screen like this with the Index numbers. Make a note of which index number is applicable to your license.
- Run next command:
dism /export-image /sourceimagefile:install.esd /sourceindex:4 /destinationimagefile:install.wim /compress:max /checkintegrity - Wait for process to finish, then copy the wim file back to the original source.
Comments
Post a Comment