Extracting a specific Windows edition from an install.esd file can be essential when customizing installation media or managing multiple editions. This guide walks you through the process step by step.
Step 1: Prepare the Installation Source
- If you have an ISO file, right-click and select Mount to create a virtual drive.
- If you are using a Windows USB drive, connect it to your PC.
- Navigate to the sources folder within the mounted ISO or USB drive and locate the install.esd file.
Optionally, copy the install.esd file to a local folder such as C:\esd. If you prefer, you can use it directly from the source, but remember to adjust the path in the commands accordingly.
Step 2: Open an Elevated Command Line
Right-click the Start menu and choose Command Prompt (Admin), Windows PowerShell (Admin), or Windows Terminal (Admin).
Step 3: List Available Windows Editions
Run the following command to display the editions contained in the install.esd file:
dism /Get-WimInfo /WimFile:F:\sources\install.esd
Replace F:\sources\install.esd with the correct path to your file. The output will list all available editions along with their index numbers.
Step 4: Extract the Desired Edition
Use the index number of the edition you want to extract. For example:
dism /Export-Image /SourceImageFile:F:\sources\install.esd /SourceIndex:1 /DestinationImageFile:C:\home11install.esd /Compress:recovery /CheckIntegrity
Or, more generally:
dism /Export-Image /SourceImageFile:F:\sources\install.esd /SourceIndex:IndexNumber /DestinationImageFile:C:\install.esd /Compress:recovery /CheckIntegrity
Explanation of Parameters
- /SourceImageFile: Path to the install.esd file.
- /SourceIndex: Index number of the edition you want to extract.
- /DestinationImageFile: Path where the extracted file will be saved.
- /Compress:recovery: Applies recovery-level compression.
- /CheckIntegrity: Ensures the integrity of the image.
Once complete, the extracted file will appear in the destination folder (e.g., C:\).
Step 5: Replace the Installation Media File (Optional)
If you want to use the new file directly, copy it into the sources folder of your installation media. Delete the original install.esd or install.wim, then rename the new file to install.esd.
Notes on Compression Options
The /Compress argument controls the compression level when exporting images:
- max: Highest compression, smallest file size, slower processing.
- fast: Balanced speed and size (default if not specified).
- none: No compression, larger file, faster processing.
- recovery: Highly compressed recovery images, commonly used with .esd files.
By following these steps, you can easily extract the exact Windows edition you need from an install.esd file. This method is particularly useful for creating tailored installation media or managing multiple editions with precision.
