Powershell Script to Check Live Bitlocker Encryption Status from Text File

If you have a list of computers and want the check the current bitlocker encryption status, here is a powershell script to do that:

 

# Rui Qiu PS Script
# 052014

$pcs=Get-Content “c:\pc.txt”

foreach ($pc in $pcs) {

manage-bde –status -cn $pc

}