使用 PowerShell 读取 BCD 条目

使用 PowerShell 读取 BCD 条目

我必须扫描 BCD 以查找给定条目,以便提取其属性。问题是 PowerShell 没有任何可与 BCD 配合使用的 build-it Cmdlet。

给出如下示例输出:

Administrador de arranque de Windows
----------------------------------
Identificádor           {bootmgr}
device                  partition=G:
path                    \efi\boot\bootarm.efi
description             Windows Boot Manager
locale                  en-US
inherit                 {globalsettings}
booterrorux             Simple
default                 {default}
displayorder            {838bb5a3-712f-11e8-b4ea-001a7dda710e}
                        {default}
                        {7619dcc9-fafe-11d9-b411-000476eba25f}
bootsequence            {01de5a27-8705-40db-bad6-96fa5187d4a6}
timeout                 30
displaybootmenu         Yes
processcustomactionsfirstYes
persistbootsequence     Yes

Cargador de arranque de Windows
-----------------------------
Identificador           {311b88b5-9b30-491d-bad9-167ca3e2d417}
...

如何获取表中给定条目的所有属性?问题更大,因为某些属性具有多个值。

相关内容