Is there any way to change the Bitlocker Recovery Key?

link|improve this question

78% accept rate
feedback

2 Answers

up vote 5 down vote accepted

To my knowledge you can only change the recovery key by completely decrypting the drive (not disabling) and encrypting it again.

link|improve this answer
feedback

You can change the recovery password without decrypting in one of two ways 1) using the manage-bde tool or 2) using the Win32_EncryptableVolume WMI interface. The first method doesn't require any programming/scripting so we'll go that route.

Assume X: is the BitLocker protected drive you want to change recovery password for.

  1. Open an elevated cmd prompt
  2. Type manage-bde X: -protectors -get -type RecoveryPassword
  3. Locate the protector you want to cycle (probably the only one displayed) and copy its ID field (including the curly braces).
  4. Type manage-bde X: -protectors -delete -id [paste the ID you copied]
  5. Type manage-bde X: -protectors -add -rp [optionally specify the new 48-digit password or enter nothing to have it randomly generated for you]

And you're done! You've changed your recovery password.

Note: If you get an error when you try to delete the recovery password, this is likely because a recovery password is required by Group Policy on your system. To get around this, first suspend BitLocker with manage-bde X: -protectors -disable then after you've added the new recovery password, resume protection with manage-bde X: -protectors -enable.

link|improve this answer
Actually, I'm referring to the entry that manage-bde calls the "Numerical Password." – Zian Choy Nov 10 '10 at 20:10
I've updated my answer to apply to recovery password. You should edit your question to specify the protector you're interested in. The "recovery password" is the human readable 48-digit password. The "recovery key" is the 256-bit binary file. – nonsensical101 Nov 16 '10 at 10:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.