How to fix DISM 0x800f081f error in Windows 10/8 In order to solve the "DISM /Online /Cleanup-Image /RestoreHealth" error 0x800f081f, you must specify a valid* Windows image file (install.wim) that contains all the files needed from the repair process. * The install.wim file must be of the same Windows Version, Edition & Language as the installed Windows version. The install.wim file is contained in any Windows installation Media under the "sources" folder (sources\install.wim). ** ** If you have downloaded Windows 10 ISO, by using the media creation tool, you "ll realize that under the "sources" folder, instead of the install.wim you find an install.esd file. The install.esd contains several Windows 10 versions, so there is the need to extract a valid Windows 10 Image (according to the installed Windows Version & Edition, in order to use it with DISM, otherwise DISM will display the "The source files could not be found – 0x800f081f" error. Detailed instructions to do that can be found in Step-2 below. If you don't own a Windows Installation Media, then follow the instructions in Step-1, to get one. *** *** Suggestion: Proceed and download a Windows Installation Media, by following the instructions in Step-1, even if you already have one. Step 1. Download Windows Installation Media in ISO format. 1. From the links below, run the Media Creation Tool according to your Windows version. Download Windows 10 Media Creation Tool Download Windows 8.1 Media Creation Tool 2. Accept the License Terms. 3. Choose Create installation media for a another PC and click Next. image 4. Press Next at "Select Language, architecture and edition" screen. 5. Select ISO file and press Next. image 6. Choose a download location for the Windows ISO file and click Save. image 7. Be patient until the download is completed and then continue to the next step. Step 2. Extract the install.wim file from the install.esd file. 1. When the download is completed, right click at the Windows ISO fie you downloaded and choose Mount. * * Note: If you are using Windows 8/8.1, then read this article: How to mount ISO files. image 2. From the mounted Windows ISO file, copy the install.esd file from the "sources" folder (e.g. D:\sources\install.esd) to the root folder of drive C: * * e.g. At this example the drive letter of the mounted Windows ISO file is D: image 3. Right click on the Start menu image and select Command Prompt (Admin). 4. Type cd\ to go to the root folder of drive C:\ 5. Then type the following command and press Enter, in order to find which images are inside the "install.esd" file: dism /Get-WimInfo /WimFile:install.esd 6. According to your Windows 10 installed version take note of the index number. * * e.g.: If you have installed the Windows 10 Home edition on your system, then the Index number is "2". image 7. Then give the command below to extract the corresponding to your Windows version "install.wim" file (Index number): * dism /export-image /SourceImageFile:install.esd /SourceIndex:IndexNumber /DestinationImageFile:install.wim /Compress:max /CheckIntegrity * Note: Replace the IndexNumber according to your Windows 10 installed version. e.g. For this example (for a Windows 10 Home based computer) we want to extract the install.wim file with Index number=2. So, the command will be: dism /export-image /SourceImageFile:install.esd /SourceIndex:2 /DestinationImageFile:install.wim /Compress:max /CheckIntegrity image_thumb[4] 7. When the process is completed you should find the exported install.wim on the drive C: (C:\install.wim). 8. Continue to the next step. Step 3. Run DISM Tool to Repair Windows Image. Important: Follow the below steps, exactly as mentioned: 1. Right click at Start menu image and select Command Prompt (Admin). 2. Type the following command and press Enter: DISM /Online /Cleanup-Image /StartComponentCleanup DISM /Online /Cleanup-Image /StartComponentCleanup 3. When the operation is completed, give the following command (and press Enter). DISM /Online /Cleanup-Image /AnalyzeComponentStore DISM /Online /Cleanup-Image /AnalyzeComponentStore 4. Finally repair the Windows image by specifying the "C:\install.wim" as the source of the known good files, by giving this command: DISM /Online /Cleanup-Image /RestoreHealth /Source:WIM:c:\install.wim:1 /LimitAccess image 5. When the "RestoreHealth process" is completed, type the following command (and press Enter) to complete the repair process: SFC /SCANNOW image 5. When the SFC scan is completed, then you 're done! Additional Help: If you still face the "The source files could not be found" after following the above instructions, then continue to troubleshoot your problem by reading the instructions in this guide: FIX DISM Source Files Could not be Found in Windows 10/8 (Troubleshooting Guide) Good luck! Let me know if this guide has helped you by leaving your comment about your experience. Please like and share this guide to help others.