What does Windows error code 5024 (ERROR_RESOURCE_PROPERTIES_STORED) mean?

 
Previous Next
ERROR_INVALID_STATE ERROR_NOT_QUORUM_CLASS

ERROR_RESOURCE_PROPERTIES_STORED

Persistent configuration changed; runtime state did not

Cluster resource properties are nonvolatile configuration, but a running resource DLL does not necessarily reconfigure every private property dynamically. This status distinguishes successful storage of property values from immediate application to the online resource instance.

The change is therefore not lost. Determine which property was modified and whether its resource type requires an Offline and Online cycle. Treating the status as a failed write can cause scripts to overwrite or repeatedly toggle a value that is already stored.

What to inspect

  • Read the resource parameters back from cluster configuration to confirm the intended value was stored.
  • Consult the resource type documentation to determine whether the property is dynamic or requires resource restart.
  • Plan the offline/online cycle with dependency and role impact in mind; a provider resource can affect dependent resources.
Get-ClusterParameter -InputObject (Get-ClusterResource -Name <ResourceName>)
Get-ClusterResourceDependency -Resource <ResourceName>

References


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