您可以通过以下两种方式之一更改恢复密码而无需解密:1) 使用 manage-bde 工具或 2) 使用Win32_EncryptableVolume WMI 界面。第一种方法不需要任何编程/脚本,所以我们将走这条路。
假设 X:是您要更改恢复密码的受 BitLocker 保护的驱动器。
manage-bde X: -protectors -get -type RecoveryPassword
manage-bde X: -protectors -delete -id [paste the ID you copied]
manage-bde X: -protectors -add -rp [optionally specify the new 48-digit password or enter nothing to have it randomly generated for you]
你完成了!您已更改恢复密码。
注意:如果您在尝试删除恢复密码时遇到错误,这可能是因为系统上的组策略需要恢复密码。要解决此问题,请先使用 暂停 BitLocker,manage-bde X: -protectors -disable
然后在添加新的恢复密码后,使用 恢复保护manage-bde X: -protectors -enable
。