Posts

How to Convert .ESD to .WIM File on Windows 10

Image
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...

Creating EFI partition using command prompt.

Step 1: Boot computer using the Windows Installation Media . Step 2:  On the first screen press Shift + F10 to bring command prompt. Commands :  diskpart  list disk select disk ( Note: Select the disk where your windows is installed.) list partition select partition ( Note: Select the Windows operating system partition.) shrink desired=100 ( Note: The amount shown in MegaByte.) create partition efi size=100 format quick fs=fat32 assign letter=s list partition list volume exit bcdboot C:\windows /s S: ( Note: you can change "C:" drive letter if you have a different one) Windows will copy boot files from its windows partition to the efi partition and create a BCD store in the same partition. Finally, Remove the Windows Installation Media and restart.

Creating a reset recovery folder to reset Windows 10 from scratch.

Image
 We all have faced the issue of windows not working properly at some point in our life. Then we have to reset the whole windows when recovery cannot fix the problem but the process is painfully long and fairly complicated. Therefore, to make things a bit simpler we should know how to make a recovery image to circumvent such scenario. First, we start by creating a folder in any drive except C drive. The best option is creating a separate drive for this whole process. You will only need 3 to 4 gigabyte of storage and that's all. Inside the drive, we will create a folder named "ResetRecoveryImage"    Now before we continue any further, we need to find out whether our windows is a 32 bit or a 64-bit operation system. To find it you need to right click on My Computer / This PC and click on Properties . Then you can see your system type from the following window. After that, we need an image file for .WIM file so download from this link Once the download is comp...