What does NTSTATUS 0xC000025F (STATUS_UNSUPPORTED_COMPRESSION) mean?

 
Previous Next
STATUS_PLUGPLAY_NO_DEVICE STATUS_INVALID_HW_PROFILE

STATUS_UNSUPPORTED_COMPRESSION

The file system or decoder does not support this compression format

Windows exposes multiple compression identifiers, but support depends on the API, file system, OS version, and operation. A format valid for one system component is not automatically valid for per-file NTFS compression or for another volume type.

Query capabilities and the current compression state rather than hard-coding an algorithm. Re-encoding may be required when moving data across a file-system or protocol boundary.

What to inspect

  • Record the exact COMPRESSION_FORMAT value and control code.
  • Query the destination volume’s file-system flags and current file compression state.
  • Use a supported format or store the data uncompressed; do not relabel encoded bytes as another format.

References


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