ERROR_CLUSTER_SHARED_VOLUME_NOT_REDIRECTED - 5967 (0x174F)

CSVFS failed operation as volume is not in redirected mode.

Updated: Feb 21, 2026

Technical Meaning

The ERROR_CLUSTER_SHARED_VOLUME_NOT_REDIRECTED error code, with the numeric value 5967 and the hexadecimal representation 0x174F, indicates that a CSVFS (Cluster Shared Volume File System) operation failed because the volume is not in the redirected mode. This error typically arises when an attempt to perform an operation on a cluster shared volume fails due to the volume's current state.

Error Details

CSVFS operations require the volume to be in a specific state, known as 'redirected' mode, for certain actions to succeed. If the volume is not in this state, the operation will fail and return this error code. This can occur during various file system operations such as creating files, directories, or performing read/write operations.

Usage Context

This error primarily affects cluster shared volumes (CSVs) used in a Windows Failover Cluster environment. CSVs are designed to provide high availability by allowing multiple nodes in the cluster to access the same volume simultaneously. The 'redirected' mode is a state where the volume appears as a local drive letter on each node, enabling seamless access and operations.

Developer Interpretation

Developers should interpret this error code when encountering failures during CSVFS operations. It indicates that the operation was attempted while the volume was not in the expected 'redirected' mode. To resolve such issues, developers need to ensure that the volume is properly configured and in the correct state before performing any file system operations.

Related Errors

  • ERROR_CLUSTER_SHARED_VOLUME_NOT_FOUND (0x80310001)
  • ERROR_CLUSTER_SHARED_VOLUME_ALREADY_REDIRECTED (0x80310002)
  • ERROR_CLUSTER_SHARED_VOLUME_NOT_ONLINE (0x80310003)

FAQ

Q: What does the ERROR_CLUSTER_SHARED_VOLUME_NOT_REDIRECTED error mean?

A: This error indicates that a CSVFS operation failed because the volume is not in the 'redirected' mode, which is required for certain operations.

Q: How can I resolve this issue?

A: Ensure that the cluster shared volume is properly configured and in the 'redirected' state before performing any file system operations.

Summary

The ERROR_CLUSTER_SHARED_VOLUME_NOT_REDIRECTED error code signifies a failure in CSVFS operations due to the volume not being in the correct mode. Developers should ensure proper configuration of cluster shared volumes to avoid this issue.