Determines whether PTR resource records, apart from A or AAAA, are published for the resource. 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.
This 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 2012 |