How to Convert .ESD to .WIM File on Windows 10
The first thing you need to do is to open your File Explorer . Go to C: drive and create a folder Win10 and drop all files from Windows 10 ISO image into it. When you copied all files, go to Sources, find install.esd and make a copy of this file . Now create another folder on your C: drive – name it ESD. Paste install.esd file into this folder. The next thing you need to do is to open Command Prompt as Administrator. We need to get into folder we have just created. Type in: cd c:\esd Then we need to clear it out: cls Each edition of the OS is stored in the file install.esd and has assigned serial number – an index (index 1, 2, 3, 4 ..), which can be viewed using the DISM tool. You can get information about your ESD file using the following command: dism /Get-WimInfo /WimFile:install.esd As you can see, in the install.esd archive there is an image of 4 versions of Windows 10 with the indexes: 1, 2, 3, 4. Deployme...