我正在为我的桌面(Windows 10 22H2 19045.4894)上的所有驱动器启用 bitlocker。
我已成功为我的系统卷 C(NVME,根据https://superuser.com/a/1217390/2761提供密码保护)和另一个硬盘上的另一个分区启用 bitlocker。
现在我尝试为其他(较旧的)分区启用它,但有些分区失败了。当我运行
Enable-BitLocker D: -PasswordProtector
我得到了
Get-Win32EncryptableVolumeInternal : D: does not have an associated BitLocker volume.
At C:\Windows\system32\WindowsPowerShell\v1.0\Modules\BitLocker\BitLocker.psm1:344 char:35
+ ... bleVolume = Get-Win32EncryptableVolumeInternal -MountPoint $MountPoin ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Write-Error], COMException
+ FullyQualifiedErrorId : System.Runtime.InteropServices.COMException,Get-Win32EncryptableVolumeInternal
或者当我跑步时
manage-bde -on D: -pw
我得到了
ERROR: An error occurred (code 0x80070057):
The parameter is incorrect.
并且也没有在 UI 上启用它的选项。
但它适用于与故障分区位于同一驱动器上的其中一个分区。
我比较了故障分区和成功分区之间的 NTFS 版本,发现它们是相同的。
如何在失败的 NTFS 分区上启用 BitLocker?
问题是无法启用 BitLocker 的分区被标记为活动状态(从旧的 Windows 安装开始,当时驱动器是我的主驱动器)。
删除活动标志并重新启动即可修复该问题。
为了删除活动标志,可以使用此答案中的说明。
当 BitLocker 看到活动分区时,它会认为这是一个操作系统分区并寻找一个(单独的)BitLocker 卷(在主系统卷解密之前从中启动 Windows)。