| Previous | Next |
| FVE_E_DEBUGGER_ENABLED | FVE_E_RAW_BLOCKED |
FVE_E_RAW_ACCESS
Where the operation stops
The value 0x80310050, named FVE_E_RAW_ACCESS, is returned when the volume is currently exposed through BitLocker raw-access mode, so the requested normal management action was intentionally not performed. It belongs to the volume state and geometry part of BitLocker rather than to generic file I/O.
Note: Use the volume GUID and current storage topology as the stable identity. When diagnosing this result, remember: Drive letters, mount points and cluster paths are presentation details and can point to the wrong object during recovery. Note: The BitLocker provider tracks encryption conversion, protection, lock state, metadata version, filesystem geometry and outstanding volume use independently. When diagnosing it, remember: Two volumes can both appear “encrypted” in a UI while being in very different states for a management API.
| Question | What to verify |
|---|---|
| Which object failed? | The exact volume GUID, protector GUID, certificate or API target supplied by the caller. |
| Which state matters? | raw-access owner, initiating API, volume lock state, filter stack, outstanding handles and the transition that entered raw mode. |
| What is the nearest false lead? | a raw disk opened by an unrelated storage utility; BitLocker raw-access mode is an explicit internal state of the encrypted volume path. |
Build a minimal diagnostic record
- record raw-access owner, initiating API, volume lock state, filter stack, outstanding handles and the transition that entered raw mode. Keep the full HRESULT and the first method that returned it because later cleanup calls can report a different state.
- capture
manage-bde -statusand the protector inventory for the exact volume GUID, not only the drive letter, because letters can change in WinRE, clusters and deployment environments. - Export BitLocker operational events for the result failure and note the boot session, caller identity and management source; that evidence separates this BitLocker condition from a generic access or storage error.
Change only the failed prerequisite
complete or cancel the owning recovery/maintenance operation and allow BitLocker to leave raw mode before retrying normal management. Collect a fresh state snapshot and issue a single retry from the same management layer.
manage-bde -status
powershell -NoProfile -Command "Get-BitLockerVolume | Format-List *"
Do not delete all key protectors, clear a TPM, reformat a partition or decrypt the volume as a generic response to this result; those actions affect different trust layers and can destroy the easiest recovery route.
State checks specific to the result
| Checkpoint | How to interpret it for it |
|---|---|
| Before the call | Record the target identity and the pre-call volume state and geometry state. The decisive boundary is that the volume is currently exposed through BitLocker raw-access mode, so the requested normal management action was intentionally not performed. |
| At failure | Preserve raw-access owner, initiating API, volume lock state, filter stack, outstanding handles and the transition that entered raw mode. This proves whether this result came from BitLocker itself or from a wrapper translating another result. |
| After correction | Complete or cancel the owning recovery/maintenance operation and allow BitLocker to leave raw mode before retrying normal management. The request should then advance without removing an unrelated recovery route. |
| After reboot or remount | Recheck protection, conversion and lock state for it; a successful management call is incomplete if the next boot cannot unlock the volume. |
Verification after the change
Success means more than the absence of a dialog. Confirm that the condition represented by this result now matches the intended design, that the protector inventory has not lost an independent recovery route, and that the next reboot or remount can unlock the volume. If the request advances to another HRESULT, record both values in order because that transition reveals the next unmet prerequisite.
Official documentation
Reference set for it:
- Microsoft: GetLockStatus method
- Microsoft: BitLocker operations guide
- Microsoft: manage-bde status
- Microsoft: GetConversionStatus method
Looking for a different code? Search another status or error code.
