Share via

Unlock BitLocker

Andualem G.Medhin 1 Reputation point
2022-01-18T13:28:21.28+00:00

I have a problem with BitLocker. Previously I Turn on BitLocker and changed the OS. Now I can't unlock the BitLocker with the previous password. It shows the following message (figure below) when I ask for the recovery key. How can I solve this problem? Note that the partition that I locked with Bitlocker is a partition different from the partition that OS resides.
![165910-screenshoot.png][1]

Windows for business | Windows Client for IT Pros | User experience | Other
0 comments No comments

1 answer

Sort by: Most helpful
  1. Limitless Technology 40,106 Reputation points
    2022-01-25T17:15:53.37+00:00

    Hello AndualemGMedhin-5162,

    Thank you for your question.

    You can try using the Unlock-BitLocker cmdlet restores disk access with BitLocker.

    To restore access, provide one of the following key protectors for the volume:

    a) Active Directory Domain Services (AD DS) account
    b) password
    c) Recovery key
    d) Recovery password

    See the following example below on how to use it:

    Example 1: Unlock a volume

    $SecureString = ConvertTo-SecureString "fjuksAS1337" -AsPlainText -Force
    Unlock-BitLocker -MountPoint "E:" -Password $SecureString

    This example unlocks a specified BitLocker volume using a password.

    The first command uses the ConvertTo-SecureString cmdlet to create a secure string that contains a password and saves it in the $SecureString variable. For more information about the ConvertTo-SecureString cmdlet, type Get-Help ConvertTo-SecureString.

    The second command unlocks the specified BitLocker volume using the password saved in the $SecureString variable.


    If the answer is helpful, please upvote and accept it as an answer.

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.