使用Live Ubuntu格式化Windows 10的EFI分区,如何解决它?


0

叫我傻,但我刚刚在Windows 10上格式化EFI系统分区,同时在Ubuntu上使用GPARTED。现在Windows 10无法启动。如何修复EFI系统分区以便Windows 10正常启动?我想从现在开始避免使用Ubuntu或任何Linux live cd。

Answers:


1

通过启动进入CMD创建丢失/删除的EFI分区:

  • 使用Windows 10/8/7安装介质启动>在第一个屏幕上按SHFIT + F10以显示命令提示符
  • 运行以下命令:

    diskpart
    list disk
    select disk number   (enter the number of the disk where resided the EFI partition - normally 0)
    list partition
    create partition efi
    format quick fs=fat32
    list partition
    list volume       (note the volume letter where Windows is installed)
    exit              (leave diskpart)
    bcdboot X:\windows (X is the volume letter of the Windows partition)
    

BCDBoot将引导文件从Windows分区复制到EFI System分区,并在同一分区中创建BCD存储。

现在,您可以删除Windows安装媒体并重新启动计算机。

有关屏幕截图的详细信息,请参阅此文章

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.