从启动选项中删除条目

从启动选项中删除条目

我已经使用 Wubi 安装了 Ubuntu。

它运行正常,但出于某种原因,我在计算机启动时看到 2 个 Ubuntu 条目(运行完全相同的操作系统)。

在 Windows 8 上,我似乎需要使用一个名为“bcdedit”的工具(使用管理员权限),所以我尝试在控制台中输入

bcdedit

以下是我得到的有关重复条目的信息:

Real-mode Boot Sector
---------------------
identifier              {9dd88019-846f-11e1-afba-9ec96921aa26}
device                  partition=D:
path                    \ubuntu\winboot\wubildr.mbr
description             Ubuntu

Real-mode Boot Sector
---------------------
identifier              {e0f9b8e5-bfba-11e1-a157-1c6f6525fc11}
device                  partition=D:
path                    \ubuntu\winboot\wubildr.mbr
description             Ubuntu

是有道理的,所以我决定删除第二个,使用:

bcdedit /deletevalue {e0f9b8e5-bfba-11e1-a157-1c6f6525fc11}

但它不起作用。它显示:

The element data type specified is not recognized, or does not apply to the
specified entry.
Run "bcdedit /?" for command line assistance.
Element not found.

我做错了什么?我记得以前这要容易得多,因为我只需编辑 boot.ini 文件即可。我该怎么做才能修复它?

答案1

使用bcdedit /delete {identifier}

bcdedit /delete:从指定条目中删除元素。

bcdedit /deletevalue:从启动项中删除指定元素。

用于bcdedit /?显示 Bcdedit 命令列表。

阅读文章来自微软。

相关内容