Public/Show-BCD.ps1

function Show-BCD {
    param (
        [Parameter(Mandatory,HelpMessage="Volume which holds the windows boot manager")]
        [ValidateScript({if ($_ -notmatch '^[a-z]:$') { throw "BootVolume only allows simple volume inputs, like d: or e:" }else { $true }})]
        $BootVolume
    )
    "="*29 + " UEFI Entries " + "="*29
    bcdedit -store $BootVolume\EFI\Microsoft\Boot\BCD -enum osloader

    "="*29 + " BIOS Entries " + "="*29
    bcdedit -store $BootVolume\Boot\BCD -enum osloader
}