利用grub从ubuntu找回windows启动项

在 /boot/grub/grub.cfg 中添加:

menuentry "Windows 10" --class windows --class os {
   insmod ntfs
   search --no-floppy --set=root --fs-uuid 90A04671A0465DBA
   ntldr /bootmgr
}

记得将 90A04671A0465DBA 改成你自己的windows盘的uuid。

原文地址:https://www.cnblogs.com/welhzh/p/7293947.html