- User ID
- 1
- Joined
- 7 Jan 2019
- Messages
- 1,519
- Reaction score
- 123
- Points
- 63
Did you know Windows 11 often enables BitLocker by default? While this is great for security, there are times when you may want to turn it off — like when dual-booting, cloning a drive, or troubleshooting performance. Here’s the simplest way to disable BitLocker using Command Prompt in just a few steps.
Step-by-Step: Disable BitLocker Using manage-bde
- Open Command Prompt or PowerShell as Administrator
- Run the following to check the current BitLocker status:
Code:PS C:\Users\Andy> manage-bde -status C: BitLocker Drive Encryption: Configuration Tool version 10.0.26100 Copyright (C) 2013 Microsoft Corporation. All rights reserved. Volume C: [] [OS Volume] Size: 476.19 GB BitLocker Version: 2.0 Conversion Status: Used Space Only Encrypted Percentage Encrypted: 100.0% Encryption Method: XTS-AES 128 Protection Status: Protection On Lock Status: Unlocked Identification Field: Unknown Key Protectors: TPM Numerical Password
- To turn off BitLocker and start decryption, enter:
Code:PS C:\Users\Andy> manage-bde -off C: BitLocker Drive Encryption: Configuration Tool version 10.0.26100 Copyright (C) 2013 Microsoft Corporation. All rights reserved. Decryption is now in progress.
- You can monitor the decryption progress with:
Code:[*]PS C:\Users\Andy> manage-bde -status C: BitLocker Drive Encryption: Configuration Tool version 10.0.26100 Copyright (C) 2013 Microsoft Corporation. All rights reserved. Volume C: [] [OS Volume] Size: 476.19 GB BitLocker Version: 2.0 Conversion Status: Decryption in Progress Percentage Encrypted: 35.1% Encryption Method: XTS-AES 128 Protection Status: Protection Off Lock Status: Unlocked Identification Field: Unknown Key Protectors: TPM Numerical Password
Important Notes:
- Do not power off your device during the decryption process.
Although it’s safe to restart your computer — the decryption will resume where it left off — I highly recommend keeping it powered on and uninterrupted until the process is complete for best reliability. - This process may take time depending on your drive size and speed.
- Once complete, BitLocker will be fully disabled for that volume.