DebugControlFunctions

[This property is no longer available for use as of Windows Server 2012.]

This property is not supported.

**Windows Server 2008 R2, Windows Server 2008 and Windows Server 2003: **

Indicates whether the Cluster service should create a separate Resource Monitor to use for debugging the control functions of a resource type. The following table summarizes the attributes of the DebugControlFunctions property.

Attribute Value
Data type DWORD
Access Read/write
Structure CLUSPROP_DWORD
Minimum FALSE
Maximum TRUE
Default FALSE

Remarks

The data value for the DebugControlFunctions property can be TRUE or FALSE. When set to TRUE, the Cluster service starts a new Resource Monitor that can be used for control function debugging.

Examples

The property value portion of a property list entry for DebugControlFunctions can be set with the following example code:

DWORD DebugControlFunctionsData = TRUE;
CLUSPROP_DWORD DebugControlFunctionsValue;
DebugControlFunctionsValue.Syntax.dw = CLUSPROP_SYNTAX_LIST_VALUE_DWORD;
DebugControlFunctionsValue.cbLength = sizeof(DWORD);
DebugControlFunctionsValue.dw = DebugControlFunctionsData;

Requirements

Minimum supported client
None supported
Minimum supported server
Windows Server 2003 Enterprise, Windows Server 2003 Datacenter
End of client support
None supported
End of server support
Windows Server 2008 R2 Enterprise, Windows Server 2008 R2 Datacenter

See also

CLUSPROP_DWORD