What does HRESULT 0xC038001C (ERROR_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION) mean?

 
Could be also:
ConstantTypeOS
STATUS_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGIONNTSTATUSWindows
Previous Next
ERROR_VOLMGR_EXTENT_NOT_CONTIGUOUS ERROR_VOLMGR_EXTENT_NOT_SECTOR_ALIGNED

ERROR_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION

ERROR_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION (0xC038001C) is a Windows Volume Manager HRESULT. The requested extent is outside the disk's public region and cannot be used for the volume.

What to check for ERROR_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION

  • Inspect the disk layout for reserved, private, or metadata regions.
  • Choose only valid unallocated space exposed for volume allocation.
  • Avoid altering reserved regions without a documented recovery plan.
REM Diagnostic context: ERROR_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION
diskpart
list disk
select disk <number>
detail disk
list partition

Do not use clean to diagnose a layout problem: it removes partition information from the selected disk.

This result reference: Microsoft: Basic and Dynamic Disks.

This result reference: Microsoft: DiskPart command reference.

This result reference: Microsoft: Convert a disk type to Dynamic or Basic.


Looking for a different code? Search another status or error code.