How to Disable BitLocker Encryption
If BitLocker encryption is enabled, the storage location of the content present in the encrypted drive of the imaging computer cannot be identified. Hence, decrypting the contents of the BitLocker-encrypted drive is essential for efficient imaging.
You can use the following methods to remove BitLocker encryption in Windows 10, Windows 11, and other supported Windows operating systems:
Disable BitLocker through Windows Command Prompt
To disable BitLocker using command line, ensure you are logged in with an administrator account. Follow the steps below:
- Open Command Prompt in Administrator mode.
- Check BitLocker status:
manage-bde -status
- Ensure the results for the required drives (C:, D:, etc.) show:
Conversion Status: Fully Decrypted
Percentage Encrypted: 0.0%

- If the result shows Percentage Encrypted: 100.0%, decrypt the required drive(s):
manage-bde -off <drive letter>:
E.g.: manage-bde -off C: - Recheck status with manage-bde -status and confirm Percentage Encrypted: 0.0%.
- Restart your computer before proceeding with image creation.
Disable BitLocker through Windows GUI mode
To remove BitLocker using the Windows GUI, ensure you have administrator credentials:
- Go to Start → Control Panel → System and Security → BitLocker Drive Encryption.

- For the target drive, click Turn Off BitLocker.

- Confirm the prompt indicating decryption may take time by clicking Turn off BitLocker / Decrypt the drive.
- Restart your computer before proceeding with image creation.
How to ensure BitLocker encryption is removed?
Confirm that the BitLocker lock icon is no longer shown for the drive and that the drive is accessible. Repeat the same process for any other encrypted drives.
Disable BitLocker through Windows PowerShell
To disable BitLocker encryption using PowerShell, ensure PowerShell is installed and supported on your system.
Disable BitLocker for all volumes
- Open Windows PowerShell in Administrator mode and run:
$BLV = Get-BitLockerVolumeDisable-BitLocker -MountPoint $BLV
- Verify decryption progress:
- Run
Get-BitLockerVolumeand check Volume Status and Encryption Percentage. Completion should show FullyDecrypted and 0%. - Open Control Panel → System and Security → BitLocker Drive Encryption to view progress.
or
- Run
- Restart your computer before proceeding with image creation.
Disable BitLocker for a single volume
- Open Windows PowerShell in Administrator mode.
- Run:
Disable-BitLocker -MountPoint "C:" - Verify decryption:
- Run
Get-BitLockerVolume -MountPoint "C:"and confirm Volume Status: FullyDecrypted and Encryption Percentage: 0%. - Check progress in Control Panel → System and Security → BitLocker Drive Encryption.
or
- Run
- Restart your computer before proceeding with image creation.
Wait until it shows that BitLocker encryption is turned off.