ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED - 5079 (0x13D7)

The specified node does not support a resource of this type. This may be due to version inconsistencies or due to the absence of the resource DLL on this node.

Updated: Feb 21, 2026

Technical Meaning

The ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED error indicates that a cluster resource type is not supported on the specified node. This can occur due to version inconsistencies or because the required resource DLL is absent from the node.

Error Details

This error typically arises in scenarios involving Windows Failover Clustering, where a resource of a specific type is requested but is not recognized by the cluster node. The error code 5079 (0x13D7) is returned to indicate that the node lacks support for the specified resource type.

Usage Context

This error can be encountered in various operations within Windows Failover Clustering, such as adding or removing resources from a cluster, or when attempting to start a resource on a node where it is not supported. It is important to ensure that all nodes in a cluster are compatible with the types of resources they will host.

Developer Interpretation

Developers should interpret this error as an indication that the requested operation cannot proceed because the specified node does not support the required resource type. This could be due to several factors, including version mismatches or missing dependencies on the node.

Common Causes

  • Version Inconsistencies: The cluster node and the resource DLL may be of different versions, leading to compatibility issues.
  • Missing Resource DLLs: The necessary resource DLL is not present on the node, preventing it from supporting the requested resource type.

Related Errors

FAQ

Q: What does the ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED error mean?

A: It indicates that the specified node does not support the requested resource type.

Q: How can I resolve this issue?

A: Ensure that all nodes in the cluster are up to date and have the necessary resource DLLs installed. Verify that the versions of the resource DLLs match across all nodes.

Summary

The ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED error is a specific indication that a node within a Windows Failover Cluster does not support a requested resource type, likely due to version inconsistencies or missing dependencies. Developers should take steps to ensure compatibility and correct configuration of cluster resources.