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
}
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
}