我的系统停留在系统修复循环上。Windows系统修复无法修复,错误“缺少OSLoader”
我尝试使用Windows论坛中建议的解决方案进行修复:自动启动修复失败。找不到OS Loader,但命令
bootrec /rebuildbcd
回报
Total identified windows installations:0
任何想法如何修复引导程序?
我的系统停留在系统修复循环上。Windows系统修复无法修复,错误“缺少OSLoader”
我尝试使用Windows论坛中建议的解决方案进行修复:自动启动修复失败。找不到OS Loader,但命令
bootrec /rebuildbcd
回报
Total identified windows installations:0
任何想法如何修复引导程序?
Answers:
这对我有用:从Windows 7 DVD或USB 执行bootrec.exe /fixmbr
bootrec.exe /fixboot
并按bootrec.exe /rebuildbcd
顺序执行。是一个帮助您制作USB Windows 7 iso的指南。http://www.techverse.net/how-to-create-a-bootable-usb-pen-drive-for-windows-7/
我在微软论坛上发现了这些说明,这些说明由Vijay B发布。我把它们格式化为对我更有意义的方式。由于您已经部分完成了这些步骤,因此您需要从第5步开始。
首次启动系统恢复选项。启动系统恢复选项。a)从磁盘启动,一旦您获得安装的欢迎屏幕,并选择“立即安装”
在提示符下,键入bootrec命令,如下所示,然后按Enter键:
bootrec /rebuildbcd
bootrec命令将搜索未包含在引导配置数据中的Windows安装,然后询问您是否要向其中添加一个或多个。
如果看到以下消息,请继续执行步骤10。
Scanning all disks for Windows installations.
Please wait, since this may take a while...
Successfully scanned Windows installations.
Total identified Windows installations: 1
[1] D:\Windows
Add installation to boot list? Yes<Y>/No<N>/All<A>:
如果看到以下消息,请继续。
Scanning all disks for Windows installations.
Please wait, since thismay take a while...
Successfully scanned Windows installations.
Total identified Windows installations: 0
The operation completed successfully.
由于BCD存储存在但未列出Windows安装,因此您首先必须手动删除它,然后再次尝试重建它。
在提示符下,执行bcdedit命令,如图所示,然后按Enter键:
bcdedit /export c:\bcdbackup
这里使用bcdedit命令将BCD存储导出为文件:bcdbackup。无需指定文件扩展名。
该命令应在屏幕上返回以下内容:
The operation completed successfully.
这意味着BCD出口按预期运作。
在提示符下,执行attrib命令,如下所示:
attrib c:\boot\bcd -h -r -s
这将从bcd文件中删除隐藏的只读和系统属性。这些属性将限制您可以对文件执行的操作。现在它们已经消失了,你可以重命名它。
要重命名BCD存储,请执行ren命令,如下所示:
ren c:\boot\bcd bcd.old
现在重命名了BCD存储,您现在应该可以成功重建它,就像您在步骤2中尝试的那样。
注意:您可以完全删除BCD文件,因为您即将创建一个新文件。但是,重命名现有的BCD会完成同样的事情,因为它现在对Windows不可用,除了您在步骤5中执行的导出之外,还提供了另一层备份,如果您决定撤消操作。
尝试通过执行以下操作再次重建BCD,然后Enter
按键:
bootrec /rebuildbcd
应该在命令提示符窗口中产生这个:
Scanning all disks for Windows installations.
Please wait, since this may take a while...
Successfully scanned Windows installations.
Total identified Windows installations: 1
[1] D:\Windows
Add installation to boot list? Yes<Y>/No<N>/All<A>:
意味着BCD存储重建正在按预期进行。
Add installation to boot list?
问题上,键入Y
或Yes
,然后Enter
键入。你应该看到:
The operation completed successfully.
意味着BCD重建已完成。
重要信息:根据您启动系统恢复选项的方式,您可能需要在重新启动之前删除光盘或闪存驱动器。