I'm trying to repair a corrupted Windows Server 2016 installation. I tried running
DISM /ONLINE /CLEANUP-IMAGE /RESTOREHEALTH
and received the error The source files could not be found.
. So, I mounted the ISO that was used to build the server initially to the F: drive and ran the command DISM /Online /Cleanup-Image /RestoreHealth /Source:F:\Sources\install.wim
, but received the same The source files could not be found.
error. I tried different variations of this command, including DISM /Online /Cleanup-Image /RestoreHealth /Source:F:\Sources
and DISM /Online /Cleanup-Image /RestoreHealth /Source:F:\
, but received the same error. In conducting research on the DISM
command, it seems like my syntax is correct, can someone please help me understand why the command is failing to use the specified source?
Thank you