What does NTSTATUS 0xC03A0011 (STATUS_VHD_METADATA_WRITE_FAILURE) mean?

 
Could be also:
ConstantTypeOS
ERROR_VHD_METADATA_WRITE_FAILUREHRESULTWindows
Previous Next
STATUS_VHD_METADATA_READ_FAILURE STATUS_VHD_INVALID_SIZE

STATUS_VHD_METADATA_WRITE_FAILURE

STATUS_VHD_METADATA_WRITE_FAILURE occurs when a virtual-disk operation needs to persist metadata but that update cannot be completed. In a VHDX file, metadata changes are distinct from guest payload writes and are protected by the format's metadata-update mechanisms.

This differs from STATUS_VHD_METADATA_READ_FAILURE, which occurs while retrieving existing metadata, and from STATUS_VHD_BLOCK_ALLOCATION_FAILURE, which concerns growing the backing payload mapping. A successful guest write cannot be assumed when its required virtual-disk metadata update failed.

Preserve the failure context

  • Record host filesystem errors, available capacity, quota state and any concurrent checkpoint, resize or backup operation.
  • Avoid retry loops that repeatedly modify the same VHDX until a copy or backup has been secured.
  • Use the provider's recovery or restore workflow rather than editing metadata entries while the disk is attached.

References


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