Share via

bit locker

Latina Crafty 0 Reputation points
2026-04-16T18:28:49.61+00:00

in the command prompt i am trying to unlock and it is telling me "operation cannot be performed because the volume is locked".

how do i fix

Windows for home | Windows 11 | Devices and drivers

2 answers

Sort by: Most helpful
  1. EmilyS726 232.1K Reputation points Independent Advisor
    2026-04-16T19:02:29.42+00:00

    What command did you run? To be exact, please share that information.

    In addition, what context are you running this command in? Are you running it before you sign in via the Windows Recovery environment, or are you running it while you are already signing into Windows?

    Was this answer helpful?

    0 comments No comments

  2. Q&A Assist
    2026-04-16T18:29:15.5266667+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    The message indicates that BitLocker still considers the drive locked and is preventing the operation being attempted. Use the appropriate BitLocker unlock command for the drive and key type, then try access again.

    If using Command Prompt with a recovery key (48‑digit numerical password), the syntax is:

    manage-bde.exe -unlock D: -recoverypassword xxxxxx-xxxxxx-xxxxxx-xxxxxx-xxxxxx-xxxxxx-xxxxxx-xxxxxx
    

    Replace D: with the correct drive letter and paste the full 48‑digit recovery password in the same format.

    If using PowerShell, the equivalent is:

    Unlock-BitLocker -MountPoint D: -RecoveryPassword xxxxxx-xxxxxx-xxxxxx-xxxxxx-xxxxxx-xxxxxx-xxxxxx-xxxxxx
    

    If using a password instead of a recovery password in PowerShell:

    $SecureString = ConvertTo-SecureString "YourPasswordHere" -AsPlainText -Force
    Unlock-BitLocker -MountPoint D: -Password $SecureString
    

    Alternatively, unlock from Control Panel/Explorer:

    1. Open Control Panel → BitLocker Drive Encryption.
    2. Find the locked drive and select Unlock drive.
    3. Enter the 48‑digit recovery key when prompted.

    If the drive is damaged and cannot be unlocked normally but the recovery key is available, data may be copied to another drive using repair-bde (note this overwrites the target drive completely):

    repair-bde C: E: -rp xxxxxx-xxxxxx-xxxxxx-xxxxxx-xxxxxx-xxxxxx-xxxxxx-xxxxxx
    

    Here C: is the encrypted volume and E: is an empty target volume that will be fully overwritten.


    References:

    Was this answer helpful?

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.