Monthly Archives: August 2021

How to Convert ESD to Wim

Microsoft often distributes its operating system as an Electronic software download or ESD. Deployment program like MDT and SCCM will only read WIM files. The purpose of this How is to convert ESD to WIM files.

Step 1: 1. Create a directory in C: called ESD. Ex: C:\ESD

Step 2: 2. Mount the ISO of the Operating

Step 3: 3. Copy the install.esd located in G:\Sources

Drive letter will differ depending on devices currently attached.

Step 4: 4. Paste the install.esd in the ESD folder

Copy and paste the install.esd file in the folder you created in step 1

Step 5: 5. Open command prompt as an administrator

Run your command prompt as an Administrator.

Step 6: 6. Run the following command: CD:\ESD

Change the directory from Root to the location of the ESD folder

Step 7: 7. Run the following command: dism /Get-WimInfo /WimFile:install.esd

This will display the Version of the operating system that are contain within the ESD file

Step 8: 8. Once you make note of the Version you wish to install run the following command: dism /export-image /SourceImageFile:install.esd /SourceIndex:4 /DestinationImageFile:install.wim /Compress:max /CheckIntegrity

Note SourceIndex will differ depending on the Version you will choose.

Step 9: 9. Go the newly created .wim and paste it to the Original source.

With the newly created wim you can import it into MDT or SCCM to create your custom image.