What Triggers This Error?
When you attempt to enable BitLocker — or when Intune / Group Policy tries to enforce a BitLocker policy — Windows evaluates every startup authentication requirement that applies to the machine. If those requirements logically contradict each other, BitLocker halts and returns this message rather than applying a potentially insecure configuration.
The most common conflicting combinations are:
- One policy requires a PIN at startup, while another policy disallows additional authentication (TPM-only mode).
- One policy requires a startup USB key, while another specifies TPM + PIN only — these are mutually exclusive authentication chains.
- A legacy on-premises GPO and an Intune configuration profile are both applying BitLocker settings to the same machine (common in hybrid Azure AD join environments).
- Two separate GPOs at different OU levels have overlapping but inconsistent settings, and no "No Override" (Enforced) flag has been set to establish precedence.
GPO Paths Involved
All BitLocker startup authentication settings live under:
Computer Configuration > Windows Settings > Security Settings > BitLocker Drive Encryption > Operating System Drives
The specific policy settings that conflict most often are:
| Policy Setting | What It Controls |
|---|---|
| Require additional authentication at startup | Master toggle — enables PIN, USB, or TPM-only. Enabling this in two GPOs with different sub-options causes the conflict. |
| Configure TPM startup PIN | Options: Allow, Require, Do not allow. "Require" in one GPO and "Do not allow" in another = conflict. |
| Configure TPM startup key | Same Allow / Require / Do not allow structure. A "Require" USB key setting conflicts with a PIN-only requirement. |
| Configure TPM startup key and PIN | Combined key+PIN mode. Cannot be active simultaneously with a USB-key-only or PIN-only requirement. |
| Allow BitLocker without a compatible TPM | Enabling this while also requiring TPM-based authentication creates a logical contradiction. |
Diagnosing with gpresult
The fastest way to see every GPO applying BitLocker settings to a machine is to generate an HTML Group Policy results report. Run this in an elevated command prompt on the affected machine:
gpresult /H C:\Temp\gpreport.html /FOpen the report in a browser and search for BitLocker. You will see each GPO that applied a BitLocker setting, its source OU, and the winning value. Look for two GPOs setting the same sub-key to opposing values.
For a faster command-line summary without an HTML file:
gpresult /SCOPE COMPUTER /V 2>&1 | findstr /i "bitlocker startup pin key"You can also check the registry directly to see the merged policy result:
# View all BitLocker OS drive policy values currently applied Get-ItemProperty "HKLM:\SOFTWARE\Policies\Microsoft\FVE"Pay attention to these registry values and their combinations:
| Registry Value | 0 | 1 | 2 |
|---|---|---|---|
UseTPMPIN | Do not allow | Allow | Require |
UseTPMKeyPIN | Do not allow | Allow | Require |
UseTPMKey | Do not allow | Allow | Require |
UseAdvancedStartup | Disabled | Enabled | — |
A conflict occurs when, for example, UseTPMPIN is set to 2 (Require) by one GPO but another GPO sets UseTPMKey to 2 (Require) as well — BitLocker cannot simultaneously require both a PIN and a USB startup key (unless you specifically configure key+PIN mode).
Resolving the Conflict
The correct fix depends on your intended authentication mode. Choose one of the following and ensure all GPOs align to it:
Option A — TPM only (silent, no user interaction). Set Require additional authentication at startup to Enabled, then set all sub-options (TPM startup PIN, TPM startup key, TPM startup key and PIN) to Do not allow. This is the typical configuration for Autopilot / Intune managed devices.
Option B — TPM + PIN (recommended for sensitive environments). Set Require additional authentication at startup to Enabled. Set Configure TPM startup PIN to Require startup PIN with TPM. Set all other sub-options to Do not allow.
Option C — TPM + USB startup key. Set Require additional authentication at startup to Enabled. Set Configure TPM startup key to Require startup key with TPM. Set all other sub-options to Do not allow.
After Resolving — Verify with manage-bde
After updating GPOs and running gpupdate /force, verify that BitLocker can now apply cleanly:
# Check current BitLocker status and protectors manage-bde -status C: # View protection method in detail manage-bde -protectors -get C:If BitLocker was previously blocked mid-encryption, re-initiate it:
manage-bde -on C: -RecoveryPassword -SkipHardwareTestAfter enabling, confirm the protectors match your intended policy — you should see only the protector types your GPO specifies (e.g., TPM + PIN, not TPM + PIN + recovery key USB simultaneously).