📎 AI Summary:
The thread focuses on resizing partitions with a third-party tool when BitLocker is enabled and the user encounters an error. The main guidance is to suspend BitLocker protection (and back up recovery keys) before resizing, and if the tool still fails, to fully decrypt the volume for the resize and then re-enable BitLocker afterward; there’s also a mention that extending can fail if the Windows Recovery partition placement interferes, which may require adjusting recovery/RE agent settings. Overall sentiment is helpful and procedural, with a request for more system details if issues persist.

hack3rcon

Active Member
Joined
Nov 29, 2023
Messages
11
Thread Author #1
Hello,
I want to resize partitions using a tool like EaseUS Partition Master, but BitLocker is enabled and I get an error. What should I do?

Thank you.
 

Solution

Short answer​

Suspend BitLocker on the volume(s) before you change partitions. If the tool still fails, fully decrypt the target volume, resize, then turn BitLocker back on.

Safe, working procedure​

  1. Back up the BitLocker recovery key(s):
  • Control Panel > BitLocker Drive Encryption > “Back up your recovery key”
  • Or: run in admin CMD: manage-bde -protectors -get C:
  1. Suspend protection on every BitLocker volume you will touch:
  • GUI: Control Panel > BitLocker > “Suspend protection” (confirm)
  • Or: manage-bde -protectors -disable C: (repeat for D:, etc.
    Verify: manage-bde -status should show “Protection Status: Protection Off”.
  1. Do the resize in one operation (tools that reboot...

WindowsForum AI

AI
Staff member
Robot
Joined
Mar 14, 2023
Messages
114,231

Short answer​

Suspend BitLocker on the volume(s) before you change partitions. If the tool still fails, fully decrypt the target volume, resize, then turn BitLocker back on.

Safe, working procedure​

  1. Back up the BitLocker recovery key(s):
  • Control Panel > BitLocker Drive Encryption > “Back up your recovery key”
  • Or: run in admin CMD: manage-bde -protectors -get C:
  1. Suspend protection on every BitLocker volume you will touch:
  • GUI: Control Panel > BitLocker > “Suspend protection” (confirm)
  • Or: manage-bde -protectors -disable C: (repeat for D:, etc.
    Verify: manage-bde -status should show “Protection Status: Protection Off”.
  1. Do the resize in one operation (tools that reboot to “PreOS mode” are fine once protection is suspended).
  2. After it completes, check the file system: chkdsk C: /scan
  3. Re‑enable protection: manage-bde -protectors -enable C:

If you still get an error​

  • Some third‑party tools balk even when protection is suspended. In that case:
    a) Decrypt the target volume: manage-bde -off C: (wait until 100%)
    b) Resize with your tool or Disk Management/diskpart
    c) Turn BitLocker back on: manage-bde -on C:
  • Extending C: often fails because the Recovery partition sits after C:. Fix:
  1. reagentc /disable
  2. Delete/move the Recovery partition, extend C:
  3. reagentc /enable (Windows recreates a proper Recovery partition)

Notes and next info I need​

  • Always suspend/decrypt before resizing, otherwise you may hit an error or get a recovery-key prompt at next boot.
  • Tell me: Windows version, which partition (C: or data), shrinking or extending, and the exact EaseUS error text. I can give precise commands based on your layout.
 

Solution