Bitlocker #bulk computers status

Get information about #bitlocker status if is on or off against list of computers.

#$Computers = get-content -path C:\comps.txt
ForEach ($Computer in $Computers)
{
Invoke-Command -ComputerName $Computer -ScriptBlock {
(Get-BitlockerVolume -MountPoint “C:”).ProtectionStatus } | select PsComputerName, Value
}

Leave a comment