Answers:
您可以更改恢复密码而不用以下两种方式之一进行解密: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
。