如何解锁硬盘驱动器和刷新 PC

Ant*_*ony 11 hard-drive system-restore windows-8 windows-8-refresh

我有 Windows 8,但 Metro UI 应用程序都没有运行,所以我从 Microsoft 下载了一个注册表修复程序。我运行了它,在那段时间里我运行了 Windows 更新。我重新启动了PC,在出现带有Windows 8 徽标的启动屏幕后,它从未显示锁定屏幕,只是黑屏。

我强行重新启动了计算机几次,检查问题是否仍然存在并且确实存在。我试图通过运行我的 Windows 安装光盘来解决这个问题。我点击了修复、疑难解答、高级选项,然后系统还原,因为我有几天前的备份。

弹出一个窗口:

要使用系统还原,您必须指定要还原的 Windows 安装。重新启动此计算机,选择操作系统,然后选择系统还原。

遇到此错误后,我尝试刷新并重置我的电脑。刷新 PC 的错误消息:

安装 Windows 的驱动器已锁定。解锁驱动器并重试。

所以我取消了,并尝试重置PC。错误信息:

无法重置您的 PC。缺少所需的驱动器分区。

我最近没有对硬盘进行任何更改、拔掉它们或对计算机进行任何物理更改。我可以从修复光盘访问 CMD。

任何人都可以识别问题,以及如何通过解锁硬盘驱动器或使用系统还原来刷新?

beb*_*bbo 7

擦除系统不是你想要的!

要使系统再次启动,您需要修复 EFI 启动内容。它与类似的消息有关

The windows boot configuration data file does not contain a valid OS entry
The drive where Windows is installed is locked. Unlock the drive and try again.
Run Code Online (Sandbox Code Playgroud)

请按照以下步骤操作 - 请参阅此博客

  1. 使用 Windows DVD(或 USB 记忆棒)打开修复命令提示符。

    疑难解答 -> 高级选项 -> 命令提示符

  2. 执行这些步骤 - 不要输入注释。但是调整数字和 Windows 路径以匹配您的配置。

    // start the disk partition tool
    diskpart    
    // if you have more disks find the correct disk and use its number
    sel disk 0
    // if you have more disks find the correct disk and use its number
    list vol
    // the drive where EFI is on is usually the first FAT32 volume - here 2
    sel vol 2
    // make that volume accessible
    assign letter=z:
    // leave the partition tool
    exit  
    // navigate to the EFI stuff
    z: 
    cd z:\EFI\Microsoft\Boot\
    // fix the boot record
    bootrec /fixboot
    // restore the boot menu - adjust the path to match your windows location
    bcdboot c:\Windows /s z:
    
    Run Code Online (Sandbox Code Playgroud)

这对我有用。