March 25, 2018

Fix DISM Error 0x800f081f in Windows 10

Deployment Image Servicing and Management (DISM) is a command-line tool which can be used to service and repair Windows Image. DISM can be used to service a Windows image (.wim) or a virtual hard disk (.vhd or .vhdx). The following DISM command is most commonly used:

DISM /Online /Cleanup-Image /RestoreHealth

A few users are reporting that they are facing the DISM error 0x800f081f after running the above command and the error message is:

Error 0x800f081f, The source files could be found. Use the “Source” option to specify the location of the files that are required to restore the feature.

Fix DISM Error 0x800f081f in Windows 10

The above error message clearly states that the DISM could not repair your computer because the file required to fix the Windows Image is missing from the source. So without wasting any time let’s see how to Fix DISM Error 0x800f081f in Windows 10 with the help of the below-listed guide.

Fix DISM Error 0x800f081f in Windows 10

Method 1: Run DISM Cleanup Command

1. Open Command Prompt. The user can perform this step by searching for ‘cmd’ and then press Enter.

Open Command Prompt. The user can perform this step by searching for ‘cmd’ and then press Enter.

2.Type the following command into cmd and hit Enter:

dism.exe /online /Cleanup-Image /StartComponentCleanup
sfc /scannow

SFC scan now command prompt | Fix DISM Error 0x800f081f in Windows 10

3.Once the above commands are finished processing, type DISM command into cmd and hit Enter:

Dism /Online /Cleanup-Image /restoreHealth

DISM restore health system

4. See if you’re able to Fix DISM Error 0x800f081f in Windows 10, if not then continue with the next method.

Method 2: Specify the Correct DISM Source

1. Download Windows 10 Image using Windows Media Creation Tool.

2. Double-click on the MediaCreationTool.exe file to launch the application.

3. Accept License terms then select “Create installation media for another PC” and click Next.

Create installation media for another PC

4. Now the language, edition, and architecture will automatically be selected according to your PC configuration but if you still want to set them yourself uncheck the option at the bottom saying “Use the recommended options for this PC.”

Use the recommended options for this PC | Fix DISM Error 0x800f081f in Windows 10

5. On “Choose which media to use” screen select ISO file and click Next.

On Choose which media to use screen select ISO file and click Next

6. Specify the download location and click Save.

Specify the download location and click Save

7. Once the ISO file is download, right-click on it and select Mount.

Once the ISO file is download, right-click on it and select Mount

Note: You need to download Virtual Clone Drive or Daemon tools to mount ISO files.

8. Open the mounted Windows ISO file from File Explorer and then navigate to sources folder.

9. Right-click on install.esd file under sources folder then select copy and paste it to C: drive.

Right-click on install.esd file under sources folder then select copy and paste this file to C drive

10. Press Windows Key + X then select Command Prompt (Admin).

11. Type cd and hit Enter to go to the root folder of C: drive.
Type cd and hit Enter to go to root folder of C drive | Fix DISM Error 0x800f081f in Windows 10

12. Now type the following command into cmd hit Enter:

dism /Get-WimInfo /WimFile:install.esd

Extract Install.ESD to Install.WIM Windows 10

13. A list of Indexes will be displayed, according to your version of Windows note down the index number. For example, if you have Windows 10 Education edition, then the index number will be 6.

A list of Indexes will be diplayed, according to your version of Windows note down the index number

14. Again type the following command into cmd and hit Enter:

dism /export-image /SourceImageFile:install.esd /SourceIndex:IndexNumber /DestinationImageFile:install.wim /Compress:max /CheckIntegrity

Important: Replace the IndexNumber according to your Windows 10 installed version.

extract install.wim from install.esd in command prompt

15. In the example which we took on step 13, the command will be:

dism /export-image /SourceImageFile:install.esd /SourceIndex:5 /DestinationImageFile:install.wim /Compress:max /CheckIntegrity

16. Once the above command finished execution, you will find the install.wim file created on the C: drive.

Once the above command finished execution you will find the install.wim file created on the C drive

17. Again open the Command Prompt with admin rights then type the following command one by one and hit Enter after:

DISM /Online /Cleanup-Image /StartComponentCleanup
DISM /Online /Cleanup-Image /AnalyzeComponentStore

DISM StartComponentCleanup

18. Now type the DISM /RestoreHealth command with the Source Windows file:

DISM /Online /Cleanup-Image /RestoreHealth /Source:WIM:c:install.wim:1 /LimitAccess

Run DISM RestoreHealth command with the Source Windows file

19. After that run System File Checker to complete the repair process:

Sfc /Scannow

SFC scan now command prompt | Fix DISM Error 0x800f081f in Windows 10

Recommended:

That’s it you have successfully Fix DISM Error 0x800f081f in Windows 10 but if you still have any questions regarding this post then feel free to ask them in the comment’s section.