How to convert ESD files to WIM files

How to convert ESD files to WIM files

Danny Moran

2 года назад

21,785 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Ahmed Elkholy
Ahmed Elkholy - 05.09.2023 06:45

THANK YOU VERY MUCH THAT HELPED ME ALOT😌

Ответить
Yute Hube
Yute Hube - 27.08.2023 14:45

The WIM ended up about 1.6 times bigger than the ESD and I don't know of any way to compress the WIM back to a size somewhere near the size of the original ESD. I am sure it's possible, because I have converted Windows 10 ESD to WIM and it didn't balloon up in size like this one does. 🤔

ESD to WIM:
dism /export-image /SourceImageFile:C:\11temp\sources\install.esd /SourceIndex:1 /DestinationImageFile:C:\11temp\sources\install.wim /Compress:max /CheckIntegrity

WIM to ESD:
dism /export-image /SourceImageFile:C:\11temp\sources\install.wim /SourceIndex:1 /DestinationImageFile:C:\11temp\sources\install.esd /Compress:recovery /CheckIntegrity

Ответить
yung_kay
yung_kay - 26.08.2023 20:55

Mine keeps saying "The specified buffer contains ill-formed data" can u help me please

Ответить
تك نولج
تك نولج - 15.08.2023 02:43

big thank you are wonderfull😍

Ответить
The Gaming King
The Gaming King - 15.08.2023 00:33

Do I add this .wim file back into the folder with the contents of the ISO?

Ответить
Kshoo
Kshoo - 08.06.2023 12:56

Thanks for such a clean and easy video!

Ответить
Or1onBelt
Or1onBelt - 03.06.2023 07:19

Thanks mate. Needed this step. Cheers

Ответить
MitikFN
MitikFN - 06.04.2023 22:24

damn, thanks for the help

Ответить
Fourmarduk666
Fourmarduk666 - 02.04.2023 02:39

Awesome, greatly appreciated.

Ответить
Blokyyy
Blokyyy - 27.03.2023 17:44

Thx a lot

Ответить
Blacklagoon
Blacklagoon - 26.02.2023 19:13

EZ

Ответить
Talha
Talha - 17.02.2023 23:09

thank you so much

Ответить
kuzey
kuzey - 04.02.2023 22:55

Thx.

Ответить
TEC Productions
TEC Productions - 06.01.2023 00:11

Unfortunately this did not work for. Error 5, access is denied

Ответить
Technical Vishnu
Technical Vishnu - 05.12.2022 20:39

thank you so much brother

Ответить
raven _uk
raven _uk - 07.11.2022 01:35

@Danny Moran The Windows 10 installation ISO file is a bit too large to fit on a 4.7GB DVD (up 100 MB). Maybe there is a way to remove some of the unneeded windows versions from install.esd (or to use a higher compression ratio) file to fit it on to a single layer DVD?

Ответить
dogff dayck
dogff dayck - 04.11.2022 02:59

How to export all index

Ответить
TRAK3
TRAK3 - 11.10.2022 21:33

Thanks bro!!!

Ответить
Karol Mróz
Karol Mróz - 21.06.2022 08:59

I wrote a simple PowerShell script to do that.

indexnum = (Get-WindowsImage -ImagePath "PathToInstall.esd").Count


for ($num = 1; $num -le $indexnum; $num++) {

Export-WindowsImage -SourceImagePath "PathToInstall.esd" -SourceIndex $num -DestinationImagePath "PathToInstall.wim" -CompressionType max -CheckIntegrity

Start-Sleep 5 # Wait for DISM to finish
}

Ответить
Felipe Porto
Felipe Porto - 27.05.2022 20:16

Hi Danny, thanks a lot...it work for me but only in my local machine. In the server (Windows Server 2008) i have a issue to execute the commands but i think is because the Powershell from Windows Server 2008 dont recognize the commands since this OS is too old rsrsrs Another question, can i generate this file .wim in my local machine and export to my Server 2008 to import on MDT?

Ответить