How to suspend BitLocker Encryption
Steps to Suspend BitLocker Encryption
You can suspend BitLocker encryption using either the Windows interface or the Command Prompt. Here’s how to do it both ways:
Method 1: Using Windows Settings
- Open the Control Panel:
- Press
Win + S
to open the search bar, type “Control Panel,” and hitEnter
.
- Press
- Navigate to BitLocker Settings:
- In the Control Panel, select
System and Security
, then click onBitLocker Drive Encryption
.
- In the Control Panel, select
- Select the Drive:
- You will see a list of drives with BitLocker enabled. Find the drive you want to suspend (usually the C: drive) and click
Suspend protection
.
- You will see a list of drives with BitLocker enabled. Find the drive you want to suspend (usually the C: drive) and click
- Confirm Suspension:
- A confirmation window will appear. Click
Yes
to confirm. BitLocker will now be suspended, and the drive will be temporarily unprotected.
- A confirmation window will appear. Click
- Complete Your Task:
- Perform the necessary updates, hardware changes, or troubleshooting steps.
- Resume BitLocker Protection:
- Once you’ve completed your task, go back to the BitLocker settings in the Control Panel and select
Resume protection
to re-enable BitLocker encryption.
- Once you’ve completed your task, go back to the BitLocker settings in the Control Panel and select
Method 2: Using Command Prompt
- Open Command Prompt as Administrator:
- Press
Win + X
to open the Power User menu and selectCommand Prompt (Admin)
orWindows Terminal (Admin)
if you’re using Windows 11.
- Press
- Check BitLocker Status:
- Type the following command to check the status of BitLocker:luaCopy code
manage-bde -status
- This command will show you the current encryption status of your drives.
- Type the following command to check the status of BitLocker:luaCopy code
- Suspend BitLocker:
- Use the following command to suspend BitLocker on the desired drive (replace
C:
with the appropriate drive letter if needed):bashCopy codemanage-bde -protectors -disable C:
- This command disables the BitLocker protection temporarily.
- Use the following command to suspend BitLocker on the desired drive (replace
- Complete Your Task:
- Perform the necessary updates, hardware changes, or troubleshooting.
- Resume BitLocker Protection:
- Once you’ve completed your task, re-enable BitLocker with the following command:bashCopy code
manage-bde -protectors -enable C:
- Once you’ve completed your task, re-enable BitLocker with the following command:bashCopy code