
+1
Pending Review
suspend bitlocker for reboot
Include an option to suspend Bitlocker when sending Reboot command
Available in Version:
Customer support service by UserEcho
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