This happens to many hundreds of our enterprise devices every month, after a cumulative update is installed on Windows. Bitlocker becomes suspended for multiple reboots. Ultimately, I'd like to solve the root of the problem by eliminating the suspension over several reboots. Unfortunately, it looks like it's coming from the roll-up package itself, which is apparently outside my control. For now, I need to manually resume BitLocker without forcing a reboot. Here's the situation. Notice that the protection status indicates that BitLocker is suspended, and it will resume after one more reboot - this just after booting up from the CU install..
PS C:\WINDOWS\system32> manage-bde -status
BitLocker Drive Encryption: Configuration Tool version 10.0.19041
Copyright (C) 2013 Microsoft Corporation. All rights reserved.
Disk volumes that can be protected with
BitLocker Drive Encryption:
Volume C: [43V65H2]
[OS Volume]
Size: 442.05 GB
BitLocker Version: 2.0
Conversion Status: Fully Encrypted
Percentage Encrypted: 100.0%
Encryption Method: XTS-AES 128
Protection Status: Protection Off (1 reboots left)
Lock Status: Unlocked
Identification Field: Unknown
Key Protectors:
Numerical Password
TPM
During boot-up, we can detect this condition and execute some PowerShell, or run "manage-bde". However, we get these errors when trying to do either one:
PowerShell:
PS C:\WINDOWS\system32> Resume-BitLocker -MountPoint "C:"
Resume-BitLocker : Data of this type is not supported. (Exception from HRESULT: 0x8007065E)
At line:1 char:1
+ Resume-BitLocker -MountPoint "C:"
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Write-Error], COMException
+ FullyQualifiedErrorId : System.Runtime.InteropServices.COMException,Resume-BitLocker
Manage-bde:
PS C:\WINDOWS\system32> manage-bde -protectors -enable c:
BitLocker Drive Encryption: Configuration Tool version 10.0.19041
Copyright (C) 2013 Microsoft Corporation. All rights reserved.
ERROR: An error occurred (code 0x8007065e):
Data of this type is not supported.
Is there any way to resume BitLocker manually, when it is in the state of "Protection Off (1 reboots left)"?
Windows 20H2 (OS Build 19042.1083)