suspend bitlocker for reboot Steph 7 years ago updated 7 years ago Pending Review Include an option to suspend Bitlocker when sending Reboot command
You can run the following PowerShell commands before sending the Reboot command:
For only OS drive: Suspend-BitLocker -MountPoint "C:" -RebootCount 0
For OS, fixed, or data drives: Suspend-BitLocker -MountPoint " F:" (F is drive letter you want to suspend for)
and then to resume:
Resume-BitLocker -MountPoint "C"
Resume-BitLocker -MountPoint "F"
OR
For all drive: Get-BitLockerVolume | Resume-BitLocker