Skip to content
Follow
Windows

How to Suspend and Resume BitLocker in Windows 11

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

Suspending BitLocker in Windows 11 lets you temporarily pause drive encryption so you can swap hardware, update your system BIOS, or make major changes without losing your data or waiting hours for full decryption. BitLocker is a built-in Windows tool that scrambles your files to keep them safe, but it can sometimes block normal maintenance tasks.

You can turn protection off for just one restart or a set amount of time using the Settings app, Control Panel , or Windows Terminal. Once you finish your work, Windows turns protection back on automatically on your next reboot, or you can resume it manually with a couple of clicks.

⚡ 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?

Hardware swaps or operating system upgrades usually call for pausing disk protection. Keeping data safe requires turning BitLocker back on immediately after completing these maintenance tasks.

What Happens When You Suspend BitLocker?

Pausing BitLocker drive encryption leaves volumes unshielded until protection resumes. Operating system drives automatically re-enable security features after specific system triggers occur. Secondary volumes remain suspended indefinitely until manual resumption takes place, persisting even across system reboots.

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.

Launch the Control Panel and navigate to System and Security, then select BitLocker Drive Encryption. Locate the target volume under Operating system drive, and click the ‘Suspend protection’ link.

Secondary drives stay unprotected even after restarting the computer. Securing data demands manually turning protection 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

Windows PowerShell provides programmatic control over drive security features. Administrator privileges are required to execute these commands successfully.

  1. Open Windows Terminal as administrator and select the PowerShell tab.

Suspend BitLocker for One Drive

Execute this command, substituting [drive_letter] with the proper target volume letter:

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

Example:

💻Code
manage-bde -protectors -disable C:

Resume BitLocker for One Drive

Execute this command:

💻Code
manage-bde -protectors -enable C:

Suspend BitLocker for All Drives

Execute this command:

PowerShell
Get-BitLockerVolume | Suspend-BitLocker

Resume BitLocker for All Drives

Execute this command:

PowerShell
Get-BitLockerVolume | Resume-BitLocker

Suspend BitLocker for Your Main Drive with Restart Limits

Pausing protection on a boot volume like the C: drive across multiple reboots requires configuring custom resume counters. Run the command 'Suspend-BitLocker -MountPoint "C:" -RebootCount ' inside PowerShell, substituting `` with an integer between 0 and 15.

💻Code
Suspend-BitLocker -MountPoint "C:" -RebootCount <restarts #>

Substitute `` with a value from 0 to 15. This parameter dictates how many reboots occur before BitLocker re-enables itself.

Example:

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

Specifying 0 forces the drive to remain vulnerable until manual resumption occurs.

Summary

BitLocker is a Windows security utility designed to protect stored files. Hardware modifications or operating system updates frequently necessitate temporary suspension. Disabling protection leaves data vulnerable until manual resumption happens or until a system reboot triggers automatic re-enabling.

Disabling BitLocker Drive Encryption proves helpful during major hardware swaps or software migrations. Installing memory modules or upgrading to version 23H2 represent common scenarios requiring temporary suspension.

What happens when suspended? Volume security remains disabled until protection resumes. Boot drives frequently reactivate protection automatically, whereas secondary drives require manual intervention.

Managing BitLocker states happens through the Control Panel, File Explorer, or PowerShell. Advanced administrators often prefer PowerShell commands because they offer granular management capabilities.

Important reminder: Re-enable BitLocker protection immediately after finishing maintenance work to maintain optimal data security.

Is suspending BitLocker the same as turning it off?

Full decryption permanently removes BitLocker protection and decodes every sector on the storage volume. Suspending leaves data encrypted on disk by storing an unencrypted key (known as a clear key) to unlock the volume master key automatically.

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 Open Windows Terminal as Admin Automatically
Windows How to Open Windows Terminal as Admin Automatically
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 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 *