HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

repair-bde — Attempt to repair or decrypt a damaged BitLocker-encrypted volume. More information: <https://learn.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandrepairdamagedattemptclibitlockerrepair-bdedecrypt
windows

Problem

How to use the repair-bde command: Attempt to repair or decrypt a damaged BitLocker-encrypted volume. More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/repair-bde>.

Solution

repair-bde — Attempt to repair or decrypt a damaged BitLocker-encrypted volume. More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/repair-bde>.

Attempt to repair a specified volume:
repair-bde {{C:}}


Attempt to repair a specified volume and output to another volume:
repair-bde {{C:}} {{D:}}


Attempt to repair a specified volume using the provided recovery key file:
repair-bde {{C:}} -RecoveryKey {{path\to\file.bek}}


Attempt to repair a specified volume using the provided numerical recovery password:
repair-bde {{C:}} -RecoveryPassword {{password}}


Attempt to repair a specified volume using the provided password:
repair-bde {{C:}} -Password {{password}}


Attempt to repair a specified volume using the provided key package:
repair-bde {{C:}} -KeyPackage {{path\to\directory}}


Log all output to a specific file:
repair-bde {{C:}} -LogFile {{path\to\file}}


Display help:
repair-bde /?

Code Snippets

Attempt to repair a specified volume

repair-bde {{C:}}

Attempt to repair a specified volume and output to another volume

repair-bde {{C:}} {{D:}}

Attempt to repair a specified volume using the provided recovery key file

repair-bde {{C:}} -RecoveryKey {{path\to\file.bek}}

Attempt to repair a specified volume using the provided numerical recovery password

repair-bde {{C:}} -RecoveryPassword {{password}}

Attempt to repair a specified volume using the provided password

repair-bde {{C:}} -Password {{password}}

Context

tldr-pages: windows/repair-bde

Revisions (0)

No revisions yet.