The error code 0x800F0915 typically indicates that DISM is unable to access the necessary files to complete the operation. This can happen if your system cannot connect to the Windows Update servers or if the required files are missing or corrupted. Here are some steps you can take to resolve this issue:
- Check Internet Connection: Ensure that your computer is connected to the internet, as DISM needs to download files from Windows Update.
- Use a Local Source: If your internet connection is unstable or DISM cannot access Windows Update, you can specify a local source for the repair. You can do this by using a working Windows installation as the repair source. Run the following command, replacing
<servername>with the name of the computer you are using as a repair source:DISM.exe /Online /Cleanup-Image /RestoreHealth /Source:\\<servername>\c$\windows /LimitAccess - Run SFC: After running DISM, you can also run the System File Checker (SFC) to fix any remaining issues. Open an elevated command prompt and type:
sfc /scannow - Check CBS.log: If the problem persists, you can check the CBS.log file located at
%windir%\Logs\CBS\CBS.logfor more detailed error messages that may help identify the issue. - Use DISM Commands: You can also try running the following DISM commands to check the health of the image:
DISM /Online /Cleanup-Image /CheckHealth DISM /Online /Cleanup-Image /ScanHealth
If these steps do not resolve the issue, consider looking for more specific error messages in the DISM log files, which can provide further insight into what might be going wrong.
References: