0XC0210009

Fix BitLocker Error 0XC0210009: Action Denied by FVE Engine

Windows Errors Intermediate 👁 10 views 📅 Jun 7, 2026

BitLocker says 'action not allowed' when you try to turn it off or change settings. Usually it's a group policy blocking you, or the drive needs a recovery key first.

1. Group Policy Blocking Your Action (Most Common)

When you see error 0XC0210009 while trying to turn off BitLocker, suspend it, or change encryption settings, the first thing to check is your local or domain group policy. Nine times out of ten, a policy called "Deny write access to fixed drives not protected by BitLocker" is turned on, or the policy that forces BitLocker on system drives is blocking you.

What happens: You right-click a drive, select "Manage BitLocker," and try to turn off encryption. You get the error. Or you try to suspend BitLocker for a firmware update, and it says action not allowed.

The fix: Edit the local group policy. Here's the step-by-step.

  1. Press Windows + R, type gpedit.msc, and hit Enter. If you're on Windows 10/11 Home, gpedit isn't there—skip to the registry fix below.
  2. In the left pane, go to: Computer Configuration > Administrative Templates > Windows Components > BitLocker Drive Encryption > Operating System Drives.
  3. Find "Require additional authentication at startup". Double-click it.
  4. Set it to Not Configured (or Disabled if you're sure). Click Apply, then OK.
  5. Now go to: ... > BitLocker Drive Encryption > Fixed Data Drives.
  6. Find "Deny write access to fixed drives not protected by BitLocker". Set it to Not Configured or Disabled.
  7. Close gpedit.msc. Open a Command Prompt as Administrator and run gpupdate /force. Wait for it to finish.
  8. Try your BitLocker action again. Should work now.

No gpedit.msc? Use the registry instead.

  1. Press Windows + R, type regedit, hit Enter.
  2. Go to: HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\FVE
  3. Look for a DWORD called "FDVDenyWriteAccess". If it's there and set to 1, double-click it and change it to 0.
  4. Also check "OSVDenyWriteAccess" if it exists. Set it to 0.
  5. Close regedit and restart the computer. The error should be gone.
Real-world example: A user on a domain-joined laptop got this error after IT pushed a policy requiring BitLocker on all fixed drives. Changing the local policy to Not Configured (or asking IT to exclude their machine) fixed it.

2. Recovery Key Needed Before Changing Encryption

Another common trigger: you're trying to turn off BitLocker or change the encryption method, but the drive has been in a "recovery mode" state or the TPM has been cleared. The FVE control engine won't let you change settings until it sees the recovery key.

How to tell: When you open BitLocker Drive Encryption in Control Panel, you might see the drive listed as "BitLocker on" but with a yellow warning icon, or it asks for the recovery key at boot.

The fix: Provide the recovery key first. Here's how.

  1. If your computer is asking for the recovery key at boot, you need to type the 48-digit key. Find it in one of these places:
    • Your Microsoft account (if you saved it there) — login at account.microsoft.com/devices/recoverykey.
    • Your printout or file saved when BitLocker was first turned on.
    • Your IT department if it's a company machine.
  2. Once you enter the key and boot into Windows, try your action again. The error should no longer appear.
  3. If the computer boots fine but you still get the error, use Command Prompt as Administrator to suspend BitLocker with the recovery key. Run:
    manage-bde -unlock C: -RecoveryPassword [your-48-digit-key]
    Then try turning off BitLocker from Control Panel.
Why this happens: When the TPM detects a hardware change (like a BIOS update, new SSD, or even a secure boot toggle), it locks the drive until the recovery key is entered. The FVE control engine then blocks any other actions until the drive is fully unlocked.

3. Corrupted or Misconfigured BitLocker Registry Keys

Sometimes the group policy is fine, you have the recovery key, and it still won't let you do anything. That's when a corrupted registry setting is the culprit. Usually it's a leftover key from an old policy or a Windows update that didn't clean up properly.

The fix: Reset the BitLocker registry keys for the specific drive.

  1. Back up your registry first. In regedit, go to File > Export, save the whole thing. If something goes wrong, you can restore it.
  2. Go to: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FVE\
  3. Look for a subkey with a long hex string (like {A1B2C3D4-...}). That's your drive's BitLocker volume key.
  4. Right-click that subkey and select Export to back it up. Save to your desktop.
  5. Now delete the subkey. Don't worry—Windows will recreate it on next boot.
  6. Close regedit and restart the computer.
  7. After reboot, open BitLocker Control Panel. The drive should show as unencrypted or with encryption suspended. You can now turn off BitLocker or change settings.
Warning: This method works only if you're absolutely sure the drive is accessible and your data is backed up. Deleting the wrong registry key can make the drive inaccessible. If in doubt, use the group policy fix first.

Quick-Reference Table

Cause Symptoms Fix
Group policy blocking Error occurs when turning off/suspending BitLocker; drive has normal icon Set "Deny write access" policies to Not Configured in gpedit.msc or registry
Recovery key required Drive shows warning icon; may ask for key at boot Enter 48-digit recovery key, then unlock with manage-bde if needed
Corrupted registry key Policies are fine, recovery key entered, still get error Delete the volume-specific subkey under HKLM\...\FVE and reboot

If you've tried all three and still get 0XC0210009, you might be dealing with a damaged TPM or a hardware encryption conflict. In that case, back up your data, then run manage-bde -off C: from an elevated Command Prompt. If that fails too, a clean Windows install may be the only way out.

Was this solution helpful?