Worklet: Resume Bitlocker For some reason, Bitlocker will not resume on some remote Dell workstations. I suspect this has to deal with not being connected to the domain when booting up/logging in. After many attempts, I finally got a working script that will resume Bitlocker even if they are not on the VPN. This has been driving me crazy for months. Hopefully this will help others. Evaluation# Check BitLocker status on C:$bitlockerStatus = Get-BitLockerVolume -MountPoint "C:" | Select-Object -ExpandProperty ProtectionStatus# BitLocker Status Legend:# 0 = Off# 1 = On# 2 = Suspended# Return 1 (non-compliant) if BitLocker is suspended (status = 2)# Return 0 (compliant) if BitLocker is enabled (status = 1)# Return 1 (non-compliant) if BitLocker is off or any other statusif ($bitlockerStatus -eq 2) { Write-Output "BitLocker is suspended." exit 1} elseif ($bitlockerStatus -eq 1) { Write-Output "BitLocker is enabled and active." exit 0} else { Write-Output "BitLocker is not enabled or in unknown state."