如何删除 Windows 启动管理器菜单上的额外 Ubuntu 选项?

如何删除 Windows 启动管理器菜单上的额外 Ubuntu 选项?

我使用 Wubi 和 Windows 一起安装了 ubuntu。我决定卸载 ubuntu 并安装 Kubuntu,我成功了。但是现在当我启动计算机时,Windows 启动管理器显示 3 个选项:

  • 视窗
  • Ubuntu
  • Ubuntu

Ubuntu 选项不起作用,但我第一次卸载 Ubuntu 时没有删除该条目。我该如何摆脱这个额外的条目?

答案1

对于 Windows Vista、7 或 8,bcdedit以管理员身份运行(按 Windows 键,输入cmd,查看上方并右键单击CMD.EXE并选择Run as administrator)。

这将列出 Windows 启动管理器条目:

C:\Windows\system32>bcdedit

Windows Boot Manager
--------------------
identifier              {bootmgr}
device                  partition=\Device\HarddiskVolume2
description             Windows Boot Manager
locale                  en-US
inherit                 {globalsettings}
default                 {current}
resumeobject            {1476af5e-e5bc-11de-b180-0024543ae029}
displayorder            {current}
                        {1476af63-e5bc-11de-b180-0024543ae029}
toolsdisplayorder       {memdiag}
timeout                 10

Windows Boot Loader
-------------------
identifier              {current}
device                  partition=C:
path                    \windows\system32\winload.exe
description             Windows 7
locale                  en-US
inherit                 {bootloadersettings}
recoverysequence        {1476af60-e5bc-11de-b180-0024543ae029}
recoveryenabled         Yes
osdevice                partition=C:
systemroot              \windows
resumeobject            {1476af5e-e5bc-11de-b180-0024543ae029}
nx                      OptIn

Real-mode Boot Sector
---------------------
identifier              {1476af63-e5bc-11de-b180-0024543ae029}
device                  partition=C:
path                    \ubuntu\winboot\wubildr.mbr
description             Ubuntu

C:\windows\system32>

请注意Real-mode Boot Sector具有描述的条目Ubuntu。复制并粘贴identifier,然后删除它,如下所示(就我而言):

bcdedit /delete {1476af63-e5bc-11de-b180-0024543ae029}

对于 Windows XP,您可以编辑C:\boot.ini。我建议先进行备份,因为错误可能会导致 Windows 无法启动。您还应该按如下方式编辑它:

  1. 右键单击My Computer,然后单击Properties
  2. Advanced选项卡上,单击Settings下的Startup and Recovery
  3. System Startup点击下Edit
  4. 删除该行C:\wubildr.mbr = "Ubuntu"

答案2

你可以使用Grub 定制器,一个图形化的 grub2 设置管理器。

相关内容