How to Suspend and Resume BitLocker in Windows 11
Suspending and resuming BitLocker in Windows 11 temporarily disables drive encryption for maintenance or specific access needs.
BitLocker is Windows’ native full-disk encryption feature, safeguarding your data by encrypting your system, fixed, or removable drives.
You might need to suspend BitLocker before performing hardware maintenance, such as replacing a drive component, or when granting temporary access to a drive without a lengthy decryption process, which can take hours for large volumes.
This guide shows you how to suspend and resume BitLocker protection directly within Windows 11, often from the Control Panel or through PowerShell, ensuring your data remains secure when not actively protected.
Navigate to Control Panel, then BitLocker Drive Encryption, and click “Suspend protection” or “Resume protection” for your desired drive. Alternatively, use PowerShell commands like manage-bde -protectors -disable C: to suspend or manage-bde -protectors -enable C: to resume.
Why Suspend BitLocker?
Sometimes you need to temporarily turn off BitLocker protection. This might be necessary when you’re making hardware changes or upgrading Windows. But remember, this is only a temporary measure. Your data needs that protection, so be sure to turn BitLocker back on as soon as you’re finished.
What Happens When You Suspend BitLocker?
When you suspend BitLocker, your drive stays unprotected until you turn the protection back on. For your main Windows drive, some actions will automatically turn protection back on. For other drives, protection stays off until you manually resume it—even after restarting your computer.
How to Suspend or Resume BitLocker in Windows
Method 1Using Control Panel
- Open open the Control Panel and go to System and Security → BitLocker Drive Encryption.
- Look for the drive you want to suspend under “Operating system drive.”
- Click the “Suspend protection” link next to that drive.

- A pop-up window will appear. Click Yes to confirm.
You can suspend BitLocker protection for your drives using the Control Panel by opening it and going to System and Security, then BitLocker Drive Encryption.
For other drives, BitLocker stays suspended even after you restart. You’ll need to manually turn it back on.
How to Resume BitLocker Using Control Panel
- Follow the same steps: Control Panel → System and Security → BitLocker Drive Encryption.
- Click “Resume protection” for the drive you want to protect again.

Method 2Using File Explorer
- Open File Explorer.
- Right-click on the drive you want to resume.
- Select “Show more options.”
- Click “Resume BitLocker protection” from the menu.

How to Suspend or Resume BitLocker Using PowerShell
You can also use Windows PowerShell to control BitLocker. ⚠️ This requires administrator privileges.
- Open Windows Terminal as administrator and select the PowerShell tab.
Suspend BitLocker for One Drive
Type this command and replace the drive letter with your drive:
manage-bde -protectors -disable <drive letter>:Example:
manage-bde -protectors -disable C:Resume BitLocker for One Drive
Type this command:
manage-bde -protectors -enable C:Suspend BitLocker for All Drives
Type this command:
Get-BitLockerVolume | Suspend-BitLockerResume BitLocker for All Drives
Type this command:
Get-BitLockerVolume | Resume-BitLockerSuspend BitLocker for Your Main Drive with Restart Limits
If you need to suspend BitLocker on your main drive (like your C: drive) for more than one restart, you can tell Windows exactly how many times it can restart before turning protection back on.
Suspend-BitLocker -MountPoint "C:" -RebootCount <restarts #>Replace <restarts #> with a number between 0 and 15. This tells your computer how many times to restart before BitLocker automatically turns back on.
Example:
Suspend-BitLocker -MountPoint "C:" -RebootCount 0Using 0 means BitLocker stays off until you manually turn it back on.
Summary
BitLocker is a Windows tool that locks down your drives to keep your information private, but you might need to suspend BitLocker temporarily when making big changes to your computer, like hardware upgrades.
Why suspend it? You need to temporarily turn it off when making hardware changes or upgrading Windows.
What happens when suspended? Your drive has no protection until you turn BitLocker back on. For your main drive, some actions turn it back on automatically. For other drives, you must manually resume it.
How to control it: You have three ways: Control Panel, File Explorer, or PowerShell commands. PowerShell requires administrator access.
Important reminder: Always resume BitLocker protection as soon as you’re done with whatever required you to suspend it. This keeps your data secure.
Is suspending BitLocker the same as turning it off?
Decrypt completely removes BitLocker protection and fully decrypts the drive. Suspend keeps the data encrypted but encrypts the BitLocker volume master key with a clear key.
Was this guide helpful?
About the Author
Richard
Tech Writer, IT Professional
Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.
No comments yet — be the first to share your thoughts!