Attempting to fix Windows 10 without an internet connection with DISM
Attempting to fix Windows 10 without an internet connection with DISM
My setup is having some issues—I couldn't start and the automatic fix didn’t work. I ended up booting into WinPE. I ran a command to try repairing it, but it crashed with "The source files could not be found." Even though I set a source folder, the log file isn’t helping.
The reference material you mentioned is a pristine copy of the wim file.
Log file bottom indicates several line items... Repair attempt failed: replacement payload detected, but CSI Payload Corruption encountered during moving directory - ERROR_SHARING_VIOLATION It appears DISM is functioning, yet the issue stems from NTFS volume corruption on the C drive. Begin by executing chkdsk /f to identify and fix the volume issues. For a deeper NTFS check, use the /r option. If everything checks out, try reinstalling the OS. Otherwise, you'll need to manually back up data, format the drive, and install the OS from scratch again.
Consider mentioning the .wim file explicitly in the source code, such as F:\Sources\install.wim
the clean windows install you're connecting from uses a wim file instead of an esd file. Could you confirm that? Also, please tell me which version of windows you want to use, so the syntax should look like for esd: /source:esd:j:...version_number. You can check the available versions in the install file by running dism /Get-WimInfo /WimFile:... or adjust it to use install.wim if needed. This will help you identify the correct version.