Answer the question
In order to leave comments, you need to log in
How to restore Windows 10 recovery partition?
Welcome all!
It so happened that when I was fixing the bootloader, I accidentally formatted the Windows 10 recovery partition. I didn’t notice this right away, but now that glitches have come up, it turned out that I can’t restore system files. When you enter the sfc /scannow command, the system swears:
C:\Windows\system32>sfc /scannow
Начато сканирование системы. Этот процесс может занять некоторое время.
Начало стадии проверки при сканировании системы.
Проверка 100% завершена.
Программа защиты ресурсов Windows обнаружила поврежденные файлы, но не
может восстановить некоторые из них.
Подробные сведения см. в файле CBS.Log, который находится по следующему пути:
windir\Logs\CBS\CBS.log. Например, C:\Windows\Logs\CBS\CBS.log. Подробные сведения
включены в файл журнала, предоставляемый флагом /OFFLOGFILE.
C:\Windows\system32>sfc /scannow
Answer the question
In order to leave comments, you need to log in
a couple of links (it helped me in a similar situation)
https://www.comss.ru/page.php?id=3875
https://www.comss.ru/page.php?id=3881
as far as I remember this blog, on the topic there is more than one article in it
ps you should already follow the second link along the way. I'll give my batch files
1 fsck.cmd
@echo on
chkdsk c: | grep Windows
@rem pause
chkdsk d: | grep Windows
@rem chkdsk g: | grep Windows
@rem chkdsk h: | grep Windows
chkdsk s: | grep Windows
@rem chkdsk x: | grep Windows
@rem pause
sfc /scannow
@pause
findstr /c:"[SR]" %windir%\Logs\CBS\CBS.log > "%userprofile%\Documents\sfclogs.txt"
type "%userprofile%\Documents\sfclogs.txt" | grep corrupted
type "%userprofile%\Documents\sfclogs.txt" | grep repaired
DISM /Online /Cleanup-Image /CheckHealth
@pause
DISM /Online /Cleanup-Image /ScanHealth
@pause
DISM /Online /Cleanup-Image /RestoreHealth
@pause
DISM /Online /Cleanup-Image /RestoreHealth /Source:"e:\sources\install.wim"
DISM /Online /Cleanup-Image /RestoreHealth /source:WIM:e:\Sources\Install.wim:1 /LimitAccess
DISM /Online /cleanup-image /restorehealth
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question