Files
claudetools/clients/stamback-septic/scripts/diag-btr2am3-bde.ps1
Howard Enos ce6a733496 sync: auto-sync from HOWARD-HOME at 2026-05-14 18:54:09
Author: Howard Enos
Machine: HOWARD-HOME
Timestamp: 2026-05-14 18:54:09
2026-05-14 18:54:10 -07:00

8 lines
431 B
PowerShell

# BitLocker decrypt progress check - DESKTOP-BTR2AM3
$ErrorActionPreference = 'SilentlyContinue'
"===== manage-bde -status ====="
manage-bde -status | Out-String
"===== Get-BitLockerVolume ====="
Get-BitLockerVolume | Select-Object MountPoint, VolumeStatus, EncryptionPercentage, EncryptionMethod, ProtectionStatus, @{n='KeyProtectors';e={$_.KeyProtector.KeyProtectorType -join ', '}} | Format-List | Out-String
"===== DONE ====="