还原数据
如果每次都使用Vista安装光盘中“Windows Complete PC还原”功能来还原,非常不方便,我们可以将“Windows RE 系统修复”工具提取出来,并安装到硬盘里直接进行还原工作。
把光盘中boot文件夹下的boot.sdi文件和Source文件夹下的boot.wim复制到D盘根目录下。
新建一个文本,输入以下内容:
@echo off
REM
REM
REM
set RAMDISK_OPTIONS=
REM
REM , GUID for the WinPE boot entry
REM
set WINPE_GUID=
REM
REM Set Timeout
REM
bcdedit.exe -timeout 5
REM
REM Create Ramdisk device options for the boot.sdi file
REM
bcdedit.exe -create %RAMDISK_OPTIONS% -d "Ramdisk Device Options" -device
bcdedit.exe -set %RAMDISK_OPTIONS% ramdisksdidevice partition=D:
bcdedit.exe -set %RAMDISK_OPTIONS% ramdisksdipath \boot.sdi
REM
REM Create WinRE boot entry
REM
bcdedit.exe -create %WINPE_GUID% -d "系统修复" -application OSLOADER
bcdedit.exe -set %WINPE_GUID% device ramdisk=[D:]\winre.wim,%RAMDISK_OPTIONS%
bcdedit.exe -set %WINPE_GUID% path \windows\system32\boot\winload.exe
bcdedit.exe -set %WINPE_GUID% osdevice ramdisk=[D:]\winre.wim,%RAMDISK_OPTIONS%
bcdedit.exe -set %WINPE_GUID% systemroot \windows
bcdedit.exe -set %WINPE_GUID% detecthal yes
bcdedit.exe -set %WINPE_GUID% nx optin
bcdedit.exe -set %WINPE_GUID% winpe yes
bcdedit.exe -displayorder %WINPE_GUID% /addlast
pause
保存到“D:\fix.cmd”。然后以管理员身份运行。
重启电脑,在开机菜单中会看到一个fix选项,选中进入Vista安装界面。点击“修复计算机”选项后,在窗口里点击“Windows Complete PC还原”选项,根据向导提示选择以前的Vista备份进行还原系统。
网友评论