N
N
Newbie22018-06-24 17:18:19
System administration
Newbie2, 2018-06-24 17:18:19

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

The log itself is here: https://yadi.sk/d/1yrRi1p83YKw5D but I didn’t understand much of it.
Is it possible to restore performance, or just reinstall?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
#
#, 2018-06-24
@Newbie2

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

spoiler
@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

drive letters and the number of checks, it's you yourself
grep from git (there is no such tool in Windows) (!! git is installed with the option of registration in the "path" of mingw tools)
2 dism+.cmd
spoiler
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"

this is the second link
3 dism++.cmd
spoiler
DISM /Online /Cleanup-Image /RestoreHealth /source:WIM:e:\Sources\Install.wim:1 /LimitAccess
DISM /Online /cleanup-image /restorehealth

sorry for the many edits

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question