8 lines
431 B
PowerShell
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 ====="
|