ERROR_CLUSTER_RESOURCE_LOCKED_STATUS - 5960 (0x1748)

The requested operation can not be completed because a resource has locked status.

Updated: Feb 21, 2026

Technical Meaning

The error code ERROR_CLUSTER_RESOURCE_LOCKED_STATUS indicates that a requested operation could not be completed due to the status of a resource being locked. This error is specific to cluster environments, where resources are managed in a highly available and fault-tolerant manner.

Error Details

  • Error Name: ERROR_CLUSTER_RESOURCE_LOCKED_STATUS
  • Numeric Code: 5960 (0x1748)
  • Short Description: The requested operation cannot be completed because a resource has locked status.

This error typically occurs in scenarios where a cluster resource is in a state that prevents the execution of certain operations. For example, if a resource is being used by another node or process, it might be marked as locked to prevent concurrent modifications and ensure data integrity.

Usage Context

The ERROR_CLUSTER_RESOURCE_LOCKED_STATUS error is relevant in environments where Windows Failover Clustering (FC) is utilized. This includes scenarios such as:

  • Attempting to modify a resource that is currently in use by another node or process.
  • Executing operations that require exclusive access to the resource, but the resource is locked due to ongoing operations or maintenance activities.

Developer Interpretation

When encountering this error, developers should consider the following aspects:

  • Resource Locking: Ensure that no other processes or nodes are currently using the resource. Resource locking can be a mechanism to prevent concurrent modifications and ensure data consistency in cluster environments.
  • Operation Context: Verify the context of the operation being performed. Some operations may require exclusive access, while others might be allowed even if the resource is locked, depending on the specific requirements of the operation.

Related Errors

FAQ

Q: What does the ERROR_CLUSTER_RESOURCE_LOCKED_STATUS error mean?

A: This error indicates that a requested operation could not be completed because a resource is locked and cannot be accessed in its current state.

Q: How can I resolve this issue?

A: Review the context of the operation and ensure that no other processes or nodes are using the resource. If necessary, wait for the lock to be released before retrying the operation.

Summary

The ERROR_CLUSTER_RESOURCE_LOCKED_STATUS error is a specific condition in Windows Failover Clustering environments where a requested operation cannot proceed due to a locked resource. Developers should focus on verifying the context and ensuring that operations are performed under appropriate conditions to avoid this error.