Назад | Перейти на главную страницу

Получение данных из BCEDIT с помощью Powershell

Мне нужно получить некоторые данные из указанной записи BCD. Мне нужна запись, обозначенная {bootmgr} идентификатор.

Из этой записи я хотел бы получить "G:". Смотрите скриншот.

Как мне проанализировать вывод, чтобы это сделать?

ВНИМАНИЕ: Я бы хотел, чтобы он работал независимо от глобализации системы, будь то испанский, английский, китайский ...

Есть ли лучший способ справиться с записями BCD, чем использование BCDEDIT в PowerShell?

Select-String обработка bcdedit вывод должен быть независимым от языка.

Мои выходные данные немецкого языка:

> bcdedit

Windows-Start-Manager
---------------------
Bezeichner              {bootmgr}
device                  partition=\Device\HarddiskVolume1
description             Windows Boot Manager
locale                  de-DE
inherit                 {globalsettings}
default                 {current}
...snip...

Эта модифицированная версия вашего скрипта:

function GetBootMgrPartitionPath() {
    $bootMgrPartitionPath = bcdedit /enum `{bootmgr`} | 
      Select-String -Pattern '\{bootmgr\}' -context 1|
        ForEach-Object { ($_.Context.PostContext.Split('=')[1]) }

    if ($bootMgrPartitionPath -eq $null){
        throw "Could not get the partition path of the {bootmgr} BCD entry"
    }
    return $bootMgrPartitionPath
}

возвращает это:

> GetBootMgrPartitionPath
\Device\HarddiskVolume1

ОК, узнал сам:

function GetBootMgrPartitionPath()
{
    $match = & bcdedit /enum `{bootmgr`} | Select-String  "device\s*partition=(?<path>[\w*\\]*)"
    $bootMgrPartitionPath = $match.Matches[0].Groups[1].Value

    if ($bootMgrPartitionPath -eq $null)
    {
        throw "Could not get the partition path of the {bootmgr} BCD entry"
    }

    return $bootMgrPartitionPath
}