PublishPTRRecords

Determines if PTR resource records, apart from A or AAAA, are published for the Cluster Name. The following table summarizes the attributes of the PublishPTRRecords property.

Attribute Value
Data type DWORD
Access Read/write
Status Optional
Structure CLUSPROP_DWORD
Minimum 0
Maximum 1
Default 0

Remarks

Setting this private property to 0, the default value, ensures that the PTR resource records are not published.

The constant for this property is CLUSREG_NAME_NETNAME_PUBLISH_PTR.

Examples

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

DWORD          PublishPTRRecordsData = 0;
CLUSPROP_DWORD PublishPTRRecordsValue;

PublishPTRRecordsValue.Syntax.dw = CLUSPROP_SYNTAX_LIST_VALUE_DWORD;
PublishPTRRecordsValue.cbLength  = sizeof(DWORD);
PublishPTRRecordsValue.dw        = PublishPTRRecordsData;

Requirements

Minimum supported client
None supported
Minimum supported server
Windows Server 2008 Datacenter, Windows Server 2008 Enterprise

See also

Cluster Name Private Properties

CLUSPROP_DWORD