What does HRESULT 0xC038001B (ERROR_VOLMGR_EXTENT_NOT_CONTIGUOUS) mean?

 
Could be also:
ConstantTypeOS
STATUS_VOLMGR_EXTENT_NOT_CONTIGUOUSNTSTATUSWindows
Previous Next
ERROR_VOLMGR_EXTENT_ALREADY_USED ERROR_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION

ERROR_VOLMGR_EXTENT_NOT_CONTIGUOUS

ERROR_VOLMGR_EXTENT_NOT_CONTIGUOUS (0xC038001B) is a Windows Volume Manager HRESULT. The volume can be extended only into a contiguous extent, but the chosen free space is elsewhere.

What to check for ERROR_VOLMGR_EXTENT_NOT_CONTIGUOUS

  • Inspect the order of partitions and unallocated extents on the disk.
  • Check whether the volume type and filesystem support the requested extension scenario.
  • Move data or use a different supported layout instead of forcing an overlapping or noncontiguous extension.
REM Diagnostic context: ERROR_VOLMGR_EXTENT_NOT_CONTIGUOUS
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.

ERROR_VOLMGR_EXTENT_NOT_CONTIGUOUS reference: Microsoft: Basic and Dynamic Disks.

ERROR_VOLMGR_EXTENT_NOT_CONTIGUOUS reference: Microsoft: DiskPart command reference.

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


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