|
@echo off
mode con cols=66 lines=32
color 1F
pushd %~dp0
set title= ***** Windows 10 系统备份恢复环境创建程序 *****
title ***** Windows 10 系统备份恢复环境创建程序 *****
echo.
echo 如果当前系统的系统还原不可用或还原被精简使用此操作
echo.
echo 用7Z打开原版位数相同的ISO\SOURCES\INSTALL.WIM\(1-2\)
echo.
echo Windows\System32\Recovery目录复制到当前%~dp0位置
echo.
echo 确认数据无误并已经按要求准备就绪按任意键回车开始创建
echo.
pause >nul 2>nul
if not exist Recovery\ReAgent.xml call %0
if not exist Recovery\winre.wim call %0
echo.
echo 清理残留...
if exist C:\Recovery cmd.exe /c takeown /f "C:\Recovery" /r /d y && icacls "C:\Recovery" /grant administrators:F /t
if exist C:\Recovery RMDIR /S /Q "C:\Recovery"
if not exist C:\Recovery md C:\Recovery &&attrib +s +h C:\Recovery
if exist C:\Windows\System32\Recovery (
cmd.exe /c takeown /f "C:\Windows\System32\Recovery" /r /d y && icacls "C:\Windows\System32\Recovery" /grant administrators:F /t
)
if exist C:\Windows\System32\Recovery RMDIR /S /Q "C:\Windows\System32\Recovery"
if not exist C:\Windows\System32\Recovery md C:\Windows\System32\Recovery
xcopy /y Recovery C:\Windows\System32\Recovery\
echo.
echo 如果数据无误和正确开始创建...
echo.
REAGENTC /ENABLE
echo.
echo 如无意外程序已经为您创建或修复了高级启动的恢复环境 |
|