+1
Pending Review

suspend bitlocker for reboot

Steph 6 years ago updated by EBell 6 years ago 1

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