Follow
Windows

How to Suspend and Resume BitLocker in Windows 11

Richard
Written by
Richard
May 13, 2024 Updated Apr 3, 2026 3 min read
BitLocker drive encrytion featured image
BitLocker drive encrytion featured image

Suspending and resuming BitLocker in Windows 11 allows you to temporarily disable encryption for a drive when specific access or maintenance is needed.

BitLocker is a full-disk encryption feature built into Windows that protects your data from unauthorized access by encrypting your entire drive, including system, fixed, and removable data drives.

This process is crucial when you need to perform hardware maintenance on a drive, like replacing components, or if you need to grant temporary access to someone without fully decrypting the drive, a process that can take many hours on large drives.

You can easily suspend BitLocker protection for a specific drive directly from the Control Panel or using PowerShell commands.

⚡ Quick Answer

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 temporary. Turn BitLocker back on as soon as you’re done. Your data needs that protection.

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

  1. Open open the Control Panel and go to System and Security → BitLocker Drive Encryption.
  2. Look for the drive you want to suspend under “Operating system drive.”
  3. Click the “Suspend protection” link next to that drive.
BitLocker Drive Encryption Control Panel suspend protection link
BitLocker Drive Encryption Control Panel suspend protection link
  1. A pop-up window will appear. Click Yes to confirm.

For your main Windows drive, BitLocker will stay suspended until you turn it back on or restart your computer.

For other drives, BitLocker stays suspended even after you restart. You must manually turn it back on.

How to Resume BitLocker Using Control Panel

  1. Follow the same steps: Control Panel → System and Security → BitLocker Drive Encryption.
  2. Click “Resume protection” for the drive you want to protect again.
Resume BitLocker suspension
Resume BitLocker suspension

Method 2Using File Explorer

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

How to Suspend or Resume BitLocker Using PowerShell

You can also use Windows PowerShell to control BitLocker. ⚠️ This requires administrator privileges.

  1. 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:

💻Code
manage-bde -protectors -disable <drive letter>:

Example:

💻Code
manage-bde -protectors -disable C:

Resume BitLocker for One Drive

Type this command:

💻Code
manage-bde -protectors -enable C:

Suspend BitLocker for All Drives

Type this command:

PowerShell
Get-BitLockerVolume | Suspend-BitLocker

Resume BitLocker for All Drives

Type this command:

PowerShell
Get-BitLockerVolume | Resume-BitLocker

Suspend BitLocker for Your Main Drive with Restart Limits

By default, BitLocker automatically turns back on for your main Windows drive when you restart. If you want to keep BitLocker off for a specific number of restarts, use this command:

💻Code
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:

💻Code
Suspend-BitLocker -MountPoint "C:" -RebootCount 0

Using 0 means BitLocker stays off until you manually turn it back on.

Summary

What is BitLocker? It’s Windows security software that encrypts your drives. Only authorized users can access your data. New files are automatically protected too.

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.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

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.

📚 Related Tutorials

How to Access Control Panel in Windows 11
Windows How to Access Control Panel in Windows 11
How to Enable or Disable BitLocker to Unlock OS Drive with PIN or USB at Startup in Windows 11
Windows How to Enable or Disable BitLocker to Unlock OS Drive with PIN or USB at Startup in Windows 11
How to Open Windows Terminal as Admin Automatically
Windows How to Open Windows Terminal as Admin Automatically
How to Turn On BitLocker to Protect a Data Drive in Windows 11
Windows How to Turn On BitLocker to Protect a Data Drive in Windows 11

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *