Software-Raid

啟動管理器顯示兩個條目,但還原後只剩下一個分區

  • January 23, 2022

我必須在 Windows 2019 伺服器實例上執行恢復(使用 veeam 恢復代理)。

恢復之前,系統被配置為具有兩個動態磁碟的軟體 RAID(鏡像)。

恢復後只剩下一個磁碟,現在是基本磁碟(不再是動態磁碟)並且不再有 raid。

但是在引導引導管理器時仍然顯示兩個條目(見圖)。引導管理器

引導工作,但奇怪的是引導管理器顯示兩個條目而只剩下一個磁碟。

如何修復引導管理器以僅顯示一個現有條目(僅剩下一個)?

您可以使用bcdedit /delete從列表中刪除條目。

bcdedit /刪除/?

此命令從引導配置數據儲存中刪除一個條目。

bcdedit

$$ /store $$/刪除 $$ /f $$ $$ /cleanup | /nocleanup $$

<filename>      Specifies the store to be used. If this option is not
               specified, the system store is used. For more information,
               run "bcdedit /? store".

<id>            Specifies the identifier of the boot entry that you want to
               delete. For more information about identifiers,
               run "bcdedit /? ID".

/f              Deletes the specified entry. Without this option, Bcdedit
               will not delete any entries that have a well-known
               identifier.

/cleanup        Deletes the specified entry and removes the entry from the
               display order. Any other references to the entry being
               deleted will also be removed from the store.  When deleting
               an OS loader entry, the associated resume from hibernation
               entry is also deleted if it is not referenced by any other
               OS loaders. This option is assumed unless /nocleanup is
               specified.

/nocleanup      Deletes the specified entry without removing the entry from
               the display order.

例子:

以下命令從儲存中刪除指定的作業系統條目,並從顯示順序中刪除該條目:

bcdedit /delete {cbd971bf-b7b8-4885-951a-fa03044f5d71}

以下命令從儲存中刪除指定的作業系統條目,並從顯示順序中刪除該條目:

bcdedit /delete {cbd971bf-b7b8-4885-951a-fa03044f5d71} /cleanup

以下命令從儲存中刪除指定的作業系統條目,而不從顯示順序中刪除該條目:

bcdedit /delete {cbd971bf-b7b8-4885-951a-fa03044f5d71} /nocleanup

以下命令從儲存中刪除基於 NTLDR 的作業系統載入程序條目:

bcdedit /delete {ntldr} /f

引用自:https://serverfault.com/questions/1090865