What does HRESULT 0xC0380013 (ERROR_VOLMGR_DISK_NOT_ENOUGH_SPACE) mean?

 
Could be also:
ConstantTypeOS
STATUS_VOLMGR_DISK_NOT_ENOUGH_SPACENTSTATUSWindows
Previous Next
ERROR_VOLMGR_DISK_NOT_EMPTY ERROR_VOLMGR_DISK_REVECTORING_FAILED

ERROR_VOLMGR_DISK_NOT_ENOUGH_SPACE

ERROR_VOLMGR_DISK_NOT_ENOUGH_SPACE (0xC0380013) is a Windows Volume Manager HRESULT. The disk does not have enough usable space for the requested configuration change.

What to check for ERROR_VOLMGR_DISK_NOT_ENOUGH_SPACE

  • Check the exact free extent, not only the total free capacity reported by the volume.
  • Account for alignment and any metadata space required by the disk type or volume layout.
  • Use supported resize/extend operations only where the required contiguous or compatible space exists.
REM Diagnostic context: ERROR_VOLMGR_DISK_NOT_ENOUGH_SPACE
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.