更改BitLocker密码


Answers:


9

您可以更改恢复密码而不用以下两种方式之一进行解密:1)使用manage-bde工具或2)使用Win32_EncryptableVolume WMI接口。第一种方法不需要任何编程/脚本编写,因此我们将按照这种方法进行。

假定X:是要为其更改恢复密码的受BitLocker保护的驱动器。

  1. 打开提升的cmd提示
  2. 类型 manage-bde X: -protectors -get -type RecoveryPassword
  3. 找到您要循环的保护器(可能是显示的唯一保护器),然后复制其ID字段(包括花括号)。
  4. 类型 manage-bde X: -protectors -delete -id [paste the ID you copied]
  5. 类型 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

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.