From 25332b149799e7eca050a8ee57c0deb6a057e5e6 Mon Sep 17 00:00:00 2001 From: Katie Kragenbrink Date: Wed, 15 May 2019 10:15:33 -0700 Subject: [PATCH] Releasing version 1.12.0.0 --- .../MSFT_xDnsRecord.schema.mof | 22 +- .../MSFT_xDnsServerSetting.psm1 | 940 +++++++++--------- .../MSFT_xDnsServerSetting.schema.mof | 102 +- Misc/MockObjects/DnsServerClass.xml | 288 +++--- README.md | 2 + xDnsServer.psd1 | 20 +- 6 files changed, 683 insertions(+), 691 deletions(-) diff --git a/DSCResources/MSFT_xDnsRecord/MSFT_xDnsRecord.schema.mof b/DSCResources/MSFT_xDnsRecord/MSFT_xDnsRecord.schema.mof index 31ce61e9..3ee7560a 100644 --- a/DSCResources/MSFT_xDnsRecord/MSFT_xDnsRecord.schema.mof +++ b/DSCResources/MSFT_xDnsRecord/MSFT_xDnsRecord.schema.mof @@ -1,11 +1,11 @@ -[ClassVersion("1.0.0.0"), FriendlyName("xDnsRecord")] -class MSFT_xDnsRecord : OMI_BaseResource -{ - [Key, Description("Specifies the name of the DNS server resource record object.")] string Name; - [Key, Description("Specifies the name of a DNS zone.")] string Zone; - [Required, Description("Specifies the type of DNS record."), ValueMap{"ARecord","CName","Ptr"}, Values{"ARecord","CName","Ptr"}] string Type; - [Key, Description("Specifies the Target Hostname or IP Address.")] string Target; - [Write, Description("Name of the DnsServer to create the record on.")] string DnsServer; - [Write, Description("Should this DNS resource record be present or absent"), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure; -}; - +[ClassVersion("1.0.0.0"), FriendlyName("xDnsRecord")] +class MSFT_xDnsRecord : OMI_BaseResource +{ + [Key, Description("Specifies the name of the DNS server resource record object.")] string Name; + [Key, Description("Specifies the name of a DNS zone.")] string Zone; + [Required, Description("Specifies the type of DNS record."), ValueMap{"ARecord","CName","Ptr"}, Values{"ARecord","CName","Ptr"}] string Type; + [Key, Description("Specifies the Target Hostname or IP Address.")] string Target; + [Write, Description("Name of the DnsServer to create the record on.")] string DnsServer; + [Write, Description("Should this DNS resource record be present or absent"), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure; +}; + diff --git a/DSCResources/MSFT_xDnsServerSetting/MSFT_xDnsServerSetting.psm1 b/DSCResources/MSFT_xDnsServerSetting/MSFT_xDnsServerSetting.psm1 index eebd2ede..743dd8df 100644 --- a/DSCResources/MSFT_xDnsServerSetting/MSFT_xDnsServerSetting.psm1 +++ b/DSCResources/MSFT_xDnsServerSetting/MSFT_xDnsServerSetting.psm1 @@ -1,470 +1,470 @@ -Import-Module $PSScriptRoot\..\Helper.psm1 -Verbose:$false - -data LocalizedData -{ - ConvertFrom-StringData -StringData @' -NotInDesiredState="{0}" not in desired state. Expected: "{1}" Actual: "{2}". -DnsClassNotFound=MicrosoftDNS_Server class not found. DNS role is not installed. -ParameterExpectedNull={0} expected to be NULL nut is not. -GettingDnsServerSettings=Getting DNS Server Settings. -SetDnsServerSetting=Setting Dns setting '{0}' to value '{1}'. -'@ -} - -$properties = 'LocalNetPriority', 'AutoConfigFileZones', 'MaxCacheTTL', 'AddressAnswerLimit', 'UpdateOptions', 'DisableAutoReverseZones', 'StrictFileParsing', 'ForwardingTimeout', 'NoRecursion', 'ScavengingInterval', 'DisjointNets', 'Forwarders', 'DefaultAgingState', 'EnableDirectoryPartitions', 'LogFilePath', 'XfrConnectTimeout', 'AllowUpdate', 'Name', 'DsAvailable', 'BootMethod', 'LooseWildcarding', 'DsPollingInterval', 'BindSecondaries', 'LogLevel', 'AutoCacheUpdate', 'EnableDnsSec', 'EnableEDnsProbes', 'NameCheckFlag', 'EDnsCacheTimeout', 'SendPort', 'WriteAuthorityNS', 'IsSlave', 'LogIPFilterList', 'RecursionTimeout', 'ListenAddresses', 'DsTombstoneInterval', 'EventLogLevel', 'RecursionRetry', 'RpcProtocol', 'SecureResponses', 'RoundRobin', 'ForwardDelegations', 'LogFileMaxSize', 'DefaultNoRefreshInterval', 'MaxNegativeCacheTTL', 'DefaultRefreshInterval' - -function Get-TargetResource -{ - [CmdletBinding()] - [OutputType([hashtable])] - param - ( - [Parameter(Mandatory = $true)] - [string] - $Name - ) - - Assert-Module -Name DnsServer - - Write-Verbose ($LocalizedData.GettingDnsServerSettings) - $dnsServerInstance = Get-CimInstance -Namespace root\MicrosoftDNS -ClassName MicrosoftDNS_Server -ErrorAction Stop - - $returnValue = @{} - - foreach ($property in $properties) - { - $returnValue.Add($property, $dnsServerInstance."$property") - } - $returnValue.LogIPFilterList = (Get-PsDnsServerDiagnosticsClass).FilterIPAddressList - $returnValue.Name = $Name - - $returnValue -} - -function Set-TargetResource -{ - [CmdletBinding()] - param - ( - [Parameter(Mandatory = $true)] - [string] - $Name, - - [Parameter()] - [uint32] - $AddressAnswerLimit, - - [Parameter()] - [uint32] - $AllowUpdate, - - [Parameter()] - [bool] - $AutoCacheUpdate, - - [Parameter()] - [uint32] - $AutoConfigFileZones, - - [Parameter()] - [bool] - $BindSecondaries, - - [Parameter()] - [uint32] - $BootMethod, - - [Parameter()] - [bool] - $DefaultAgingState, - - [Parameter()] - [uint32] - $DefaultNoRefreshInterval, - - [Parameter()] - [uint32] - $DefaultRefreshInterval, - - [Parameter()] - [bool] - $DisableAutoReverseZones, - - [Parameter()] - [bool] - $DisjointNets, - - [Parameter()] - [uint32] - $DsPollingInterval, - - [Parameter()] - [uint32] - $DsTombstoneInterval, - - [Parameter()] - [uint32] - $EDnsCacheTimeout, - - [Parameter()] - [bool] - $EnableDirectoryPartitions, - - [Parameter()] - [uint32] - $EnableDnsSec, - - [Parameter()] - [bool] - $EnableEDnsProbes, - - [Parameter()] - [uint32] - $EventLogLevel, - - [Parameter()] - [uint32] - $ForwardDelegations, - - [Parameter()] - [string[]] - $Forwarders, - - [Parameter()] - [uint32] - $ForwardingTimeout, - - [Parameter()] - [bool] - $IsSlave, - - [Parameter()] - [string[]] - $ListenAddresses, - - [Parameter()] - [bool] - $LocalNetPriority, - - [Parameter()] - [uint32] - $LogFileMaxSize, - - [Parameter()] - [string] - $LogFilePath, - - [Parameter()] - [string[]] - $LogIPFilterList, - - [Parameter()] - [uint32] - $LogLevel, - - [Parameter()] - [bool] - $LooseWildcarding, - - [Parameter()] - [uint32] - $MaxCacheTTL, - - [Parameter()] - [uint32] - $MaxNegativeCacheTTL, - - [Parameter()] - [uint32] - $NameCheckFlag, - - [Parameter()] - [bool] - $NoRecursion, - - [Parameter()] - [uint32] - $RecursionRetry, - - [Parameter()] - [uint32] - $RecursionTimeout, - - [Parameter()] - [bool] - $RoundRobin, - - [Parameter()] - [int16] - $RpcProtocol, - - [Parameter()] - [uint32] - $ScavengingInterval, - - [Parameter()] - [bool] - $SecureResponses, - - [Parameter()] - [uint32] - $SendPort, - - [Parameter()] - [bool] - $StrictFileParsing, - - [Parameter()] - [uint32] - $UpdateOptions, - - [Parameter()] - [bool] - $WriteAuthorityNS, - - [Parameter()] - [uint32] - $XfrConnectTimeout - ) - - Assert-Module -Name DnsServer - - $PSBoundParameters.Remove('Name') - $dnsProperties = Remove-CommonParameter -Hashtable $PSBoundParameters - - $dnsServerInstance = Get-CimInstance -Namespace root\MicrosoftDNS -ClassName MicrosoftDNS_Server - - try - { - Foreach($property in $dnsProperties.keys) - { - Write-Verbose -Message ($LocalizedData.SetDnsServerSetting -f $property, $dnsProperties[$property]) - } - - Set-CimInstance -InputObject $dnsServerInstance -Property $dnsProperties -ErrorAction Stop - } - catch - { - throw $_ - } -} - -function Test-TargetResource -{ - [CmdletBinding()] - [OutputType([bool])] - param - ( - [Parameter(Mandatory = $true)] - [string] - $Name, - - [Parameter()] - [uint32] - $AddressAnswerLimit, - - [Parameter()] - [uint32] - $AllowUpdate, - - [Parameter()] - [bool] - $AutoCacheUpdate, - - [Parameter()] - [uint32] - $AutoConfigFileZones, - - [Parameter()] - [bool] - $BindSecondaries, - - [Parameter()] - [uint32] - $BootMethod, - - [Parameter()] - [bool] - $DefaultAgingState, - - [Parameter()] - [uint32] - $DefaultNoRefreshInterval, - - [Parameter()] - [uint32] - $DefaultRefreshInterval, - - [Parameter()] - [bool] - $DisableAutoReverseZones, - - [Parameter()] - [bool] - $DisjointNets, - - [Parameter()] - [uint32] - $DsPollingInterval, - - [Parameter()] - [uint32] - $DsTombstoneInterval, - - [Parameter()] - [uint32] - $EDnsCacheTimeout, - - [Parameter()] - [bool] - $EnableDirectoryPartitions, - - [Parameter()] - [uint32] - $EnableDnsSec, - - [Parameter()] - [bool] - $EnableEDnsProbes, - - [Parameter()] - [uint32] - $EventLogLevel, - - [Parameter()] - [uint32] - $ForwardDelegations, - - [Parameter()] - [string[]] - $Forwarders, - - [Parameter()] - [uint32] - $ForwardingTimeout, - - [Parameter()] - [bool] - $IsSlave, - - [Parameter()] - [string[]] - $ListenAddresses, - - [Parameter()] - [bool] - $LocalNetPriority, - - [Parameter()] - [uint32] - $LogFileMaxSize, - - [Parameter()] - [string] - $LogFilePath, - - [Parameter()] - [string[]] - $LogIPFilterList, - - [Parameter()] - [uint32] - $LogLevel, - - [Parameter()] - [bool] - $LooseWildcarding, - - [Parameter()] - [uint32] - $MaxCacheTTL, - - [Parameter()] - [uint32] - $MaxNegativeCacheTTL, - - [Parameter()] - [uint32] - $NameCheckFlag, - - [Parameter()] - [bool] - $NoRecursion, - - [Parameter()] - [uint32] - $RecursionRetry, - - [Parameter()] - [uint32] - $RecursionTimeout, - - [Parameter()] - [bool] - $RoundRobin, - - [Parameter()] - [int16] - $RpcProtocol, - - [Parameter()] - [uint32] - $ScavengingInterval, - - [Parameter()] - [bool] - $SecureResponses, - - [Parameter()] - [uint32] - $SendPort, - - [Parameter()] - [bool] - $StrictFileParsing, - - [Parameter()] - [uint32] - $UpdateOptions, - - [Parameter()] - [bool] - $WriteAuthorityNS, - - [Parameter()] - [uint32] - $XfrConnectTimeout - ) - - Write-Verbose -Message 'Evaluating the DNS server settings.' - - $currentState = Get-TargetResource -Name $Name - - $desiredState = $PSBoundParameters - $result = Test-DscParameterState -CurrentValues $currentState -DesiredValues $desiredState -TurnOffTypeChecking -Verbose:$VerbosePreference - - return $result -} - -<# - .SYNOPSIS - Internal function to get results from the PS_DnsServerDiagnostics. - This is needed because LogIpFilterList is not returned by querying the MicrosoftDNS_Server class. -#> -function Get-PsDnsServerDiagnosticsClass -{ - [CmdletBinding()] - [OutputType([Microsoft.Management.Infrastructure.CimInstance])] - - $invokeCimMethodParameters = @{ - NameSpace = 'root/Microsoft/Windows/DNS' - ClassName = 'PS_DnsServerDiagnostics' - MethodName = 'Get' - ErrorAction = 'Stop' - } - - $cimDnsServerDiagnostics = Invoke-CimMethod @invokeCimMethodParameters - $cimDnsServerDiagnostics.cmdletOutput -} - -Export-ModuleMember -Function *-TargetResource +Import-Module $PSScriptRoot\..\Helper.psm1 -Verbose:$false + +data LocalizedData +{ + ConvertFrom-StringData -StringData @' +NotInDesiredState="{0}" not in desired state. Expected: "{1}" Actual: "{2}". +DnsClassNotFound=MicrosoftDNS_Server class not found. DNS role is not installed. +ParameterExpectedNull={0} expected to be NULL nut is not. +GettingDnsServerSettings=Getting DNS Server Settings. +SetDnsServerSetting=Setting Dns setting '{0}' to value '{1}'. +'@ +} + +$properties = 'LocalNetPriority', 'AutoConfigFileZones', 'MaxCacheTTL', 'AddressAnswerLimit', 'UpdateOptions', 'DisableAutoReverseZones', 'StrictFileParsing', 'ForwardingTimeout', 'NoRecursion', 'ScavengingInterval', 'DisjointNets', 'Forwarders', 'DefaultAgingState', 'EnableDirectoryPartitions', 'LogFilePath', 'XfrConnectTimeout', 'AllowUpdate', 'Name', 'DsAvailable', 'BootMethod', 'LooseWildcarding', 'DsPollingInterval', 'BindSecondaries', 'LogLevel', 'AutoCacheUpdate', 'EnableDnsSec', 'EnableEDnsProbes', 'NameCheckFlag', 'EDnsCacheTimeout', 'SendPort', 'WriteAuthorityNS', 'IsSlave', 'LogIPFilterList', 'RecursionTimeout', 'ListenAddresses', 'DsTombstoneInterval', 'EventLogLevel', 'RecursionRetry', 'RpcProtocol', 'SecureResponses', 'RoundRobin', 'ForwardDelegations', 'LogFileMaxSize', 'DefaultNoRefreshInterval', 'MaxNegativeCacheTTL', 'DefaultRefreshInterval' + +function Get-TargetResource +{ + [CmdletBinding()] + [OutputType([hashtable])] + param + ( + [Parameter(Mandatory = $true)] + [string] + $Name + ) + + Assert-Module -Name DnsServer + + Write-Verbose ($LocalizedData.GettingDnsServerSettings) + $dnsServerInstance = Get-CimInstance -Namespace root\MicrosoftDNS -ClassName MicrosoftDNS_Server -ErrorAction Stop + + $returnValue = @{} + + foreach ($property in $properties) + { + $returnValue.Add($property, $dnsServerInstance."$property") + } + $returnValue.LogIPFilterList = (Get-PsDnsServerDiagnosticsClass).FilterIPAddressList + $returnValue.Name = $Name + + $returnValue +} + +function Set-TargetResource +{ + [CmdletBinding()] + param + ( + [Parameter(Mandatory = $true)] + [string] + $Name, + + [Parameter()] + [uint32] + $AddressAnswerLimit, + + [Parameter()] + [uint32] + $AllowUpdate, + + [Parameter()] + [bool] + $AutoCacheUpdate, + + [Parameter()] + [uint32] + $AutoConfigFileZones, + + [Parameter()] + [bool] + $BindSecondaries, + + [Parameter()] + [uint32] + $BootMethod, + + [Parameter()] + [bool] + $DefaultAgingState, + + [Parameter()] + [uint32] + $DefaultNoRefreshInterval, + + [Parameter()] + [uint32] + $DefaultRefreshInterval, + + [Parameter()] + [bool] + $DisableAutoReverseZones, + + [Parameter()] + [bool] + $DisjointNets, + + [Parameter()] + [uint32] + $DsPollingInterval, + + [Parameter()] + [uint32] + $DsTombstoneInterval, + + [Parameter()] + [uint32] + $EDnsCacheTimeout, + + [Parameter()] + [bool] + $EnableDirectoryPartitions, + + [Parameter()] + [uint32] + $EnableDnsSec, + + [Parameter()] + [bool] + $EnableEDnsProbes, + + [Parameter()] + [uint32] + $EventLogLevel, + + [Parameter()] + [uint32] + $ForwardDelegations, + + [Parameter()] + [string[]] + $Forwarders, + + [Parameter()] + [uint32] + $ForwardingTimeout, + + [Parameter()] + [bool] + $IsSlave, + + [Parameter()] + [string[]] + $ListenAddresses, + + [Parameter()] + [bool] + $LocalNetPriority, + + [Parameter()] + [uint32] + $LogFileMaxSize, + + [Parameter()] + [string] + $LogFilePath, + + [Parameter()] + [string[]] + $LogIPFilterList, + + [Parameter()] + [uint32] + $LogLevel, + + [Parameter()] + [bool] + $LooseWildcarding, + + [Parameter()] + [uint32] + $MaxCacheTTL, + + [Parameter()] + [uint32] + $MaxNegativeCacheTTL, + + [Parameter()] + [uint32] + $NameCheckFlag, + + [Parameter()] + [bool] + $NoRecursion, + + [Parameter()] + [uint32] + $RecursionRetry, + + [Parameter()] + [uint32] + $RecursionTimeout, + + [Parameter()] + [bool] + $RoundRobin, + + [Parameter()] + [int16] + $RpcProtocol, + + [Parameter()] + [uint32] + $ScavengingInterval, + + [Parameter()] + [bool] + $SecureResponses, + + [Parameter()] + [uint32] + $SendPort, + + [Parameter()] + [bool] + $StrictFileParsing, + + [Parameter()] + [uint32] + $UpdateOptions, + + [Parameter()] + [bool] + $WriteAuthorityNS, + + [Parameter()] + [uint32] + $XfrConnectTimeout + ) + + Assert-Module -Name DnsServer + + $PSBoundParameters.Remove('Name') + $dnsProperties = Remove-CommonParameter -Hashtable $PSBoundParameters + + $dnsServerInstance = Get-CimInstance -Namespace root\MicrosoftDNS -ClassName MicrosoftDNS_Server + + try + { + Foreach($property in $dnsProperties.keys) + { + Write-Verbose -Message ($LocalizedData.SetDnsServerSetting -f $property, $dnsProperties[$property]) + } + + Set-CimInstance -InputObject $dnsServerInstance -Property $dnsProperties -ErrorAction Stop + } + catch + { + throw $_ + } +} + +function Test-TargetResource +{ + [CmdletBinding()] + [OutputType([bool])] + param + ( + [Parameter(Mandatory = $true)] + [string] + $Name, + + [Parameter()] + [uint32] + $AddressAnswerLimit, + + [Parameter()] + [uint32] + $AllowUpdate, + + [Parameter()] + [bool] + $AutoCacheUpdate, + + [Parameter()] + [uint32] + $AutoConfigFileZones, + + [Parameter()] + [bool] + $BindSecondaries, + + [Parameter()] + [uint32] + $BootMethod, + + [Parameter()] + [bool] + $DefaultAgingState, + + [Parameter()] + [uint32] + $DefaultNoRefreshInterval, + + [Parameter()] + [uint32] + $DefaultRefreshInterval, + + [Parameter()] + [bool] + $DisableAutoReverseZones, + + [Parameter()] + [bool] + $DisjointNets, + + [Parameter()] + [uint32] + $DsPollingInterval, + + [Parameter()] + [uint32] + $DsTombstoneInterval, + + [Parameter()] + [uint32] + $EDnsCacheTimeout, + + [Parameter()] + [bool] + $EnableDirectoryPartitions, + + [Parameter()] + [uint32] + $EnableDnsSec, + + [Parameter()] + [bool] + $EnableEDnsProbes, + + [Parameter()] + [uint32] + $EventLogLevel, + + [Parameter()] + [uint32] + $ForwardDelegations, + + [Parameter()] + [string[]] + $Forwarders, + + [Parameter()] + [uint32] + $ForwardingTimeout, + + [Parameter()] + [bool] + $IsSlave, + + [Parameter()] + [string[]] + $ListenAddresses, + + [Parameter()] + [bool] + $LocalNetPriority, + + [Parameter()] + [uint32] + $LogFileMaxSize, + + [Parameter()] + [string] + $LogFilePath, + + [Parameter()] + [string[]] + $LogIPFilterList, + + [Parameter()] + [uint32] + $LogLevel, + + [Parameter()] + [bool] + $LooseWildcarding, + + [Parameter()] + [uint32] + $MaxCacheTTL, + + [Parameter()] + [uint32] + $MaxNegativeCacheTTL, + + [Parameter()] + [uint32] + $NameCheckFlag, + + [Parameter()] + [bool] + $NoRecursion, + + [Parameter()] + [uint32] + $RecursionRetry, + + [Parameter()] + [uint32] + $RecursionTimeout, + + [Parameter()] + [bool] + $RoundRobin, + + [Parameter()] + [int16] + $RpcProtocol, + + [Parameter()] + [uint32] + $ScavengingInterval, + + [Parameter()] + [bool] + $SecureResponses, + + [Parameter()] + [uint32] + $SendPort, + + [Parameter()] + [bool] + $StrictFileParsing, + + [Parameter()] + [uint32] + $UpdateOptions, + + [Parameter()] + [bool] + $WriteAuthorityNS, + + [Parameter()] + [uint32] + $XfrConnectTimeout + ) + + Write-Verbose -Message 'Evaluating the DNS server settings.' + + $currentState = Get-TargetResource -Name $Name + + $desiredState = $PSBoundParameters + $result = Test-DscParameterState -CurrentValues $currentState -DesiredValues $desiredState -TurnOffTypeChecking -Verbose:$VerbosePreference + + return $result +} + +<# + .SYNOPSIS + Internal function to get results from the PS_DnsServerDiagnostics. + This is needed because LogIpFilterList is not returned by querying the MicrosoftDNS_Server class. +#> +function Get-PsDnsServerDiagnosticsClass +{ + [CmdletBinding()] + [OutputType([Microsoft.Management.Infrastructure.CimInstance])] + + $invokeCimMethodParameters = @{ + NameSpace = 'root/Microsoft/Windows/DNS' + ClassName = 'PS_DnsServerDiagnostics' + MethodName = 'Get' + ErrorAction = 'Stop' + } + + $cimDnsServerDiagnostics = Invoke-CimMethod @invokeCimMethodParameters + $cimDnsServerDiagnostics.cmdletOutput +} + +Export-ModuleMember -Function *-TargetResource diff --git a/DSCResources/MSFT_xDnsServerSetting/MSFT_xDnsServerSetting.schema.mof b/DSCResources/MSFT_xDnsServerSetting/MSFT_xDnsServerSetting.schema.mof index 8fadd933..d5064fe8 100644 --- a/DSCResources/MSFT_xDnsServerSetting/MSFT_xDnsServerSetting.schema.mof +++ b/DSCResources/MSFT_xDnsServerSetting/MSFT_xDnsServerSetting.schema.mof @@ -1,51 +1,51 @@ - -[ClassVersion("1.0.0.0"), FriendlyName("xDnsServerSetting")] -class MSFT_xDnsServerSetting : OMI_BaseResource -{ - [Key, Description("Key for the resource. It doesn't matter what it is as long as it's unique within the configuration.")] String Name; - [Write, Description("Maximum number of host records returned in response to an address request. Values between 5 and 28 are valid.")] Uint32 AddressAnswerLimit; - [Write, Description("Specifies whether the DNS Server accepts dynamic update requests.")] Uint32 AllowUpdate; - [Write, Description("Indicates whether the DNS Server attempts to update its cache entries using data from root servers.")] Boolean AutoCacheUpdate; - [Write, Description("Indicates which standard primary zones that are authoritative for the name of the DNS Server must be updated when the name server changes.")] Uint32 AutoConfigFileZones; - [Write, Description("Determines the AXFR message format when sending to non-Microsoft DNS Server secondaries")] Boolean BindSecondaries; - [Write, Description("Initialization method for the DNS Server.")] Uint32 BootMethod; - [Write, Description("Default ScavengingInterval value set for all Active Directory-integrated zones created on this DNS Server.")] Boolean DefaultAgingState; - [Write, Description("No-refresh interval, in hours, set for all Active Directory-integrated zones created on this DNS Server.")] Uint32 DefaultNoRefreshInterval; - [Write, Description("Refresh interval, in hours, set for all Active Directory-integrated zones created on this DNS Server.")] Uint32 DefaultRefreshInterval; - [Write, Description("Indicates whether the DNS Server automatically creates standard reverse look up zones.")] Boolean DisableAutoReverseZones; - [Write, Description("Indicates whether the default port binding for a socket used to send queries to remote DNS Servers can be overridden.")] Boolean DisjointNets; - [Write, Description("Interval, in seconds, to poll the DS-integrated zones.")] Uint32 DsPollingInterval; - [Write, Description("Lifetime of tombstoned records in Directory Service integrated zones, expressed in seconds.")] Uint32 DsTombstoneInterval; - [Write, Description("Lifetime, in seconds, of the cached information describing the EDNS version supported by other DNS Servers.")] Uint32 EDnsCacheTimeout; - [Write, Description("Specifies whether support for application directory partitions is enabled on the DNS Server.")] Boolean EnableDirectoryPartitions; - [Write, Description("Specifies whether the DNS Server includes DNSSEC-specific RRs, KEY, SIG, and NXT in a response.")] Uint32 EnableDnsSec; - [Write, Description("Specifies the behavior of the DNS Server. When TRUE, the DNS Server always responds with OPT resource records according to RFC 2671, unless the remote server has indicated it does not support EDNS in a prior exchange. If FALSE, the DNS Server responds to queries with OPTs only if OPTs are sent in the original query.")] Boolean EnableEDnsProbes; - [Write, Description("Indicates which events the DNS Server records in the Event Viewer system log.")] Uint32 EventLogLevel; - [Write, Description("Specifies whether queries to delegated sub-zones are forwarded.")] Uint32 ForwardDelegations; - [Write, Description("Enumerates the list of IP addresses of Forwarders to which the DNS Server forwards queries.")] String Forwarders[]; - [Write, Description("Time, in seconds, a DNS Server forwarding a query will wait for resolution from the forwarder before attempting to resolve the query itself.")] Uint32 ForwardingTimeout; - [Write, Description("TRUE if the DNS server does not use recursion when name-resolution through forwarders fails.")] Boolean IsSlave; - [Write, Description("Enumerates the list of IP addresses on which the DNS Server can receive queries.")] String ListenAddresses[]; - [Write, Description("Indicates whether the DNS Server gives priority to the local net address when returning A records.")] Boolean LocalNetPriority; - [Write, Description("Size of the DNS Server debug log, in bytes.")] Uint32 LogFileMaxSize; - [Write, Description("File name and path for the DNS Server debug log.")] String LogFilePath; - [Write, Description("List of IP addresses used to filter DNS events written to the debug log.")] String LogIPFilterList[]; - [Write, Description("Indicates which policies are activated in the Event Viewer system log.")] Uint32 LogLevel; - [Write, Description("Indicates whether the DNS Server performs loose wildcarding.")] Boolean LooseWildcarding; - [Write, Description("Maximum time, in seconds, the record of a recursive name query may remain in the DNS Server cache.")] Uint32 MaxCacheTTL; - [Write, Description("Maximum time, in seconds, a name error result from a recursive query may remain in the DNS Server cache.")] Uint32 MaxNegativeCacheTTL; - [Write, Description("Indicates the set of eligible characters to be used in DNS names.")] Uint32 NameCheckFlag; - [Write, Description("Indicates whether the DNS Server performs recursive look ups. TRUE indicates recursive look ups are not performed.")] Boolean NoRecursion; - [Write, Description("Elapsed seconds before retrying a recursive look up.")] Uint32 RecursionRetry; - [Write, Description("Elapsed seconds before the DNS Server gives up recursive query.")] Uint32 RecursionTimeout; - [Write, Description("Indicates whether the DNS Server round robins multiple A records.")] Boolean RoundRobin; - [Write, Description("RPC protocol or protocols over which administrative RPC runs.")] Sint16 RpcProtocol; - [Write, Description("Interval, in hours, between two consecutive scavenging operations performed by the DNS Server.")] Uint32 ScavengingInterval; - [Write, Description("Indicates whether the DNS Server exclusively saves records of names in the same subtree as the server that provided them.")] Boolean SecureResponses; - [Write, Description("Port on which the DNS Server sends UDP queries to other servers.")] Uint32 SendPort; - [Write, Description("Indicates whether the DNS Server parses zone files strictly.")] Boolean StrictFileParsing; - [Write, Description("Restricts the type of records that can be dynamically updated on the server, used in addition to the AllowUpdate settings on Server and Zone objects.")] Uint32 UpdateOptions; - [Write, Description("Specifies whether the DNS Server writes NS and SOA records to the authority section on successful response.")] Boolean WriteAuthorityNS; - [Write, Description("Time, in seconds, the DNS Server waits for a successful TCP connection to a remote server when attempting a zone transfer.")] Uint32 XfrConnectTimeout; - [Read, Description("Indicates whether there is an available DS on the DNS Server.")] Boolean DsAvailable; -}; + +[ClassVersion("1.0.0.0"), FriendlyName("xDnsServerSetting")] +class MSFT_xDnsServerSetting : OMI_BaseResource +{ + [Key, Description("Key for the resource. It doesn't matter what it is as long as it's unique within the configuration.")] String Name; + [Write, Description("Maximum number of host records returned in response to an address request. Values between 5 and 28 are valid.")] Uint32 AddressAnswerLimit; + [Write, Description("Specifies whether the DNS Server accepts dynamic update requests.")] Uint32 AllowUpdate; + [Write, Description("Indicates whether the DNS Server attempts to update its cache entries using data from root servers.")] Boolean AutoCacheUpdate; + [Write, Description("Indicates which standard primary zones that are authoritative for the name of the DNS Server must be updated when the name server changes.")] Uint32 AutoConfigFileZones; + [Write, Description("Determines the AXFR message format when sending to non-Microsoft DNS Server secondaries")] Boolean BindSecondaries; + [Write, Description("Initialization method for the DNS Server.")] Uint32 BootMethod; + [Write, Description("Default ScavengingInterval value set for all Active Directory-integrated zones created on this DNS Server.")] Boolean DefaultAgingState; + [Write, Description("No-refresh interval, in hours, set for all Active Directory-integrated zones created on this DNS Server.")] Uint32 DefaultNoRefreshInterval; + [Write, Description("Refresh interval, in hours, set for all Active Directory-integrated zones created on this DNS Server.")] Uint32 DefaultRefreshInterval; + [Write, Description("Indicates whether the DNS Server automatically creates standard reverse look up zones.")] Boolean DisableAutoReverseZones; + [Write, Description("Indicates whether the default port binding for a socket used to send queries to remote DNS Servers can be overridden.")] Boolean DisjointNets; + [Write, Description("Interval, in seconds, to poll the DS-integrated zones.")] Uint32 DsPollingInterval; + [Write, Description("Lifetime of tombstoned records in Directory Service integrated zones, expressed in seconds.")] Uint32 DsTombstoneInterval; + [Write, Description("Lifetime, in seconds, of the cached information describing the EDNS version supported by other DNS Servers.")] Uint32 EDnsCacheTimeout; + [Write, Description("Specifies whether support for application directory partitions is enabled on the DNS Server.")] Boolean EnableDirectoryPartitions; + [Write, Description("Specifies whether the DNS Server includes DNSSEC-specific RRs, KEY, SIG, and NXT in a response.")] Uint32 EnableDnsSec; + [Write, Description("Specifies the behavior of the DNS Server. When TRUE, the DNS Server always responds with OPT resource records according to RFC 2671, unless the remote server has indicated it does not support EDNS in a prior exchange. If FALSE, the DNS Server responds to queries with OPTs only if OPTs are sent in the original query.")] Boolean EnableEDnsProbes; + [Write, Description("Indicates which events the DNS Server records in the Event Viewer system log.")] Uint32 EventLogLevel; + [Write, Description("Specifies whether queries to delegated sub-zones are forwarded.")] Uint32 ForwardDelegations; + [Write, Description("Enumerates the list of IP addresses of Forwarders to which the DNS Server forwards queries.")] String Forwarders[]; + [Write, Description("Time, in seconds, a DNS Server forwarding a query will wait for resolution from the forwarder before attempting to resolve the query itself.")] Uint32 ForwardingTimeout; + [Write, Description("TRUE if the DNS server does not use recursion when name-resolution through forwarders fails.")] Boolean IsSlave; + [Write, Description("Enumerates the list of IP addresses on which the DNS Server can receive queries.")] String ListenAddresses[]; + [Write, Description("Indicates whether the DNS Server gives priority to the local net address when returning A records.")] Boolean LocalNetPriority; + [Write, Description("Size of the DNS Server debug log, in bytes.")] Uint32 LogFileMaxSize; + [Write, Description("File name and path for the DNS Server debug log.")] String LogFilePath; + [Write, Description("List of IP addresses used to filter DNS events written to the debug log.")] String LogIPFilterList[]; + [Write, Description("Indicates which policies are activated in the Event Viewer system log.")] Uint32 LogLevel; + [Write, Description("Indicates whether the DNS Server performs loose wildcarding.")] Boolean LooseWildcarding; + [Write, Description("Maximum time, in seconds, the record of a recursive name query may remain in the DNS Server cache.")] Uint32 MaxCacheTTL; + [Write, Description("Maximum time, in seconds, a name error result from a recursive query may remain in the DNS Server cache.")] Uint32 MaxNegativeCacheTTL; + [Write, Description("Indicates the set of eligible characters to be used in DNS names.")] Uint32 NameCheckFlag; + [Write, Description("Indicates whether the DNS Server performs recursive look ups. TRUE indicates recursive look ups are not performed.")] Boolean NoRecursion; + [Write, Description("Elapsed seconds before retrying a recursive look up.")] Uint32 RecursionRetry; + [Write, Description("Elapsed seconds before the DNS Server gives up recursive query.")] Uint32 RecursionTimeout; + [Write, Description("Indicates whether the DNS Server round robins multiple A records.")] Boolean RoundRobin; + [Write, Description("RPC protocol or protocols over which administrative RPC runs.")] Sint16 RpcProtocol; + [Write, Description("Interval, in hours, between two consecutive scavenging operations performed by the DNS Server.")] Uint32 ScavengingInterval; + [Write, Description("Indicates whether the DNS Server exclusively saves records of names in the same subtree as the server that provided them.")] Boolean SecureResponses; + [Write, Description("Port on which the DNS Server sends UDP queries to other servers.")] Uint32 SendPort; + [Write, Description("Indicates whether the DNS Server parses zone files strictly.")] Boolean StrictFileParsing; + [Write, Description("Restricts the type of records that can be dynamically updated on the server, used in addition to the AllowUpdate settings on Server and Zone objects.")] Uint32 UpdateOptions; + [Write, Description("Specifies whether the DNS Server writes NS and SOA records to the authority section on successful response.")] Boolean WriteAuthorityNS; + [Write, Description("Time, in seconds, the DNS Server waits for a successful TCP connection to a remote server when attempting a zone transfer.")] Uint32 XfrConnectTimeout; + [Read, Description("Indicates whether there is an available DS on the DNS Server.")] Boolean DsAvailable; +}; diff --git a/Misc/MockObjects/DnsServerClass.xml b/Misc/MockObjects/DnsServerClass.xml index 93d4fd36..76d1f61d 100644 --- a/Misc/MockObjects/DnsServerClass.xml +++ b/Misc/MockObjects/DnsServerClass.xml @@ -1,144 +1,144 @@ - - - - Microsoft.Management.Infrastructure.CimInstance#root/MicrosoftDNS/MicrosoftDNS_Server - Microsoft.Management.Infrastructure.CimInstance#ROOT/MicrosoftDNS/CIM_Service - Microsoft.Management.Infrastructure.CimInstance#ROOT/MicrosoftDNS/CIM_LogicalElement - Microsoft.Management.Infrastructure.CimInstance#ROOT/MicrosoftDNS/CIM_ManagedSystemElement - Microsoft.Management.Infrastructure.CimInstance#MicrosoftDNS_Server - Microsoft.Management.Infrastructure.CimInstance#CIM_Service - Microsoft.Management.Infrastructure.CimInstance#CIM_LogicalElement - Microsoft.Management.Infrastructure.CimInstance#CIM_ManagedSystemElement - Microsoft.Management.Infrastructure.CimInstance - System.Object - - MicrosoftDNS_Server (Name = "DC1.contoso.com") - - - - - DC1.contoso.com - OK - - true - Automatic - - - 0 - 1 - false - 1 - false - 3 - false - 168 - 168 - false - false - true - 180 - 1209600 - 900 - true - 1 - true - 4 - 0 - - - System.String[] - System.Array - System.Object - - - 168.63.129.16 - 8.8.8.8 - - - 3 - true - - - - 10.0.0.4 - - - true - 500000000 - C:\Windows\System32\DNS\DNS.log - - 50393905 - false - 86400 - 900 - 2 - false - 3 - 8 - true - 5 - 168 - true - 0 - - - - fe80::7da3:a014:6581:2cdc - 10.0.0.4 - - - false - 783 - 629146374 - false - 30 - - - - - - System.Collections.ArrayList - System.Object - - - - - CIM_ManagedSystemElement - ROOT/MicrosoftDNS - DC1 - -549583800 - <CLASS NAME="CIM_ManagedSystemElement"><QUALIFIER NAME="Abstract" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Description" TYPE="string"><VALUE>The ManagedSystemElement class is the base class for the system element hierarchy. Membership Criteria: Any distinguishable component of a system is a candidate for inclusion in this class.&lt;P&gt;Examples: Software components, such as files; and devices, such as disk drives and controllers, and physical components such as chips and cards.</VALUE></QUALIFIER><QUALIFIER NAME="Locale" TYPE="sint32" TOSUBCLASS="false"><VALUE>1033</VALUE></QUALIFIER><QUALIFIER NAME="UUID" TYPE="string" TOSUBCLASS="false"><VALUE>{8502C517-5FBB-11D2-AAC1-006008C78BC7}</VALUE></QUALIFIER><PROPERTY NAME="Caption" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>The Caption property is a short textual description (one-line string) of the object.</VALUE></QUALIFIER><QUALIFIER NAME="MaxLen" TYPE="sint32"><VALUE>64</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="Description" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>The Description property provides a textual description of the object. </VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="InstallDate" TYPE="datetime"><QUALIFIER NAME="Description" TYPE="string"><VALUE>A datetime value indicating when the object was installed. A lack of a value does not indicate that the object is not installed.</VALUE></QUALIFIER><QUALIFIER NAME="MappingStrings" TYPE="string"><VALUE.ARRAY><VALUE>MIF.DMTF|ComponentID|001.5</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="Name" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>The Name property defines the label by which the object is known. When subclassed, the Name property can be overridden to be a Key property.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="Status" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>A string indicating the current status of the object.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="ValueMap" TYPE="string"><VALUE.ARRAY><VALUE>OK</VALUE><VALUE>Error</VALUE><VALUE>Degraded</VALUE><VALUE>Unknown</VALUE></VALUE.ARRAY></QUALIFIER></PROPERTY></CLASS> - - - - - CIM_LogicalElement - ROOT/MicrosoftDNS - DC1 - -549567160 - <CLASS NAME="CIM_LogicalElement" SUPERCLASS="CIM_ManagedSystemElement"><QUALIFIER NAME="Description" TYPE="string"><VALUE>The CIM_LogicalElement class is the base class for all the components of the system that represent abstract system components.&lt;P&gt;Example: Profiles, processes, or system capabilities in the form of logical devices.</VALUE></QUALIFIER><QUALIFIER NAME="Abstract" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Locale" TYPE="sint32" TOSUBCLASS="false"><VALUE>1033</VALUE></QUALIFIER><QUALIFIER NAME="UUID" TYPE="string" TOSUBCLASS="false"><VALUE>{8502C518-5FBB-11D2-AAC1-006008C78BC7}</VALUE></QUALIFIER></CLASS> - - - - - CIM_Service - ROOT/MicrosoftDNS - DC1 - -549556760 - <CLASS NAME="CIM_Service" SUPERCLASS="CIM_LogicalElement"><QUALIFIER NAME="Description" TYPE="string"><VALUE>A logical element that contains the information necessary to represent and manage the functionality provided by a Device and/or SoftwareFeature. A Service is a general-purpose object to configure and manage the implementation of functionality. It is not the functionality itself.</VALUE></QUALIFIER><QUALIFIER NAME="Abstract" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Locale" TYPE="sint32" TOSUBCLASS="false"><VALUE>1033</VALUE></QUALIFIER><QUALIFIER NAME="UUID" TYPE="string" TOSUBCLASS="false"><VALUE>{8502C527-5FBB-11D2-AAC1-006008C78BC7}</VALUE></QUALIFIER><PROPERTY NAME="Name" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>The Name property uniquely identifies the Service and provides an indication of the functionality that is managed. This functionality is described in more detail in the object&apos;s Description property. </VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="key" TYPE="boolean" OVERRIDABLE="false"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Override" TYPE="string"><VALUE>Name</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="CreationClassName" TYPE="string"><QUALIFIER NAME="CIM_Key" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="Started" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>ServiceStarted is a boolean indicating whether the Service has been started (TRUE), or stopped (FALSE).</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="StartMode" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>StartMode is a string value indicating whether the Service is automatically started by a System, Operating System, etc. or only started upon request.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="ValueMap" TYPE="string"><VALUE.ARRAY><VALUE>Automatic</VALUE><VALUE>Manual</VALUE></VALUE.ARRAY></QUALIFIER></PROPERTY><PROPERTY NAME="SystemCreationClassName" TYPE="string"><QUALIFIER NAME="CIM_Key" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Description" TYPE="string"><VALUE>The type name of the system that hosts this service</VALUE></QUALIFIER><QUALIFIER NAME="Propagated" TYPE="string"><VALUE>CIM_System.CreationClassName</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="SystemName" TYPE="string"><QUALIFIER NAME="CIM_Key" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Description" TYPE="string"><VALUE>The name of the system that hosts this service</VALUE></QUALIFIER><QUALIFIER NAME="Propagated" TYPE="string"><VALUE>CIM_System.Name</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><METHOD NAME="StartService" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>The StartService method places the Service in the started state. It returns an integer value of 0 if the Service was successfully started, 1 if the request is not supported and any other number to indicate an error.</VALUE></QUALIFIER></METHOD><METHOD NAME="StopService" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>The StopService method places the Service in the stopped state. It returns an integer value of 0 if the Service was successfully stopped, 1 if the request is not supported and any other number to indicate an error.</VALUE></QUALIFIER></METHOD></CLASS> - - - - - MicrosoftDNS_Server - root/MicrosoftDNS - DC1 - -549553640 - <CLASS NAME="MicrosoftDNS_Server" SUPERCLASS="CIM_Service"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This class describes a DNS server. Every instance of this class may be associated with (or more intuitively &apos;may contain&apos;) one instance of class MicrosoftDNS_Cache, one instance of class MicrosoftDNS_RootHints and multiple instances of class MicrosoftDNS_Zone.</VALUE></QUALIFIER><QUALIFIER NAME="dynamic" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Locale" TYPE="sint32" TOSUBCLASS="false"><VALUE>1033</VALUE></QUALIFIER><QUALIFIER NAME="provider" TYPE="string" TOSUBCLASS="false"><VALUE>MS_NT_DNS_PROVIDER</VALUE></QUALIFIER><QUALIFIER NAME="Schema" TYPE="string"><VALUE>MicrosoftDNS</VALUE></QUALIFIER><QUALIFIER NAME="UUID" TYPE="string" TOSUBCLASS="false"><VALUE>{3E9F9B09-AA43-11d2-85DD-0000F8102E5F}</VALUE></QUALIFIER><PROPERTY NAME="Name" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the Fully Qualified Domain Name or IP address of the DNS server.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="key" TYPE="boolean" OVERRIDABLE="false"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Override" TYPE="string"><VALUE>Name</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="AddressAnswerLimit" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the maximum number of host records returned in response to an address request. Values between 5 and 28 are valid.</VALUE></QUALIFIER><QUALIFIER NAME="Not_NULL" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="AllowUpdate" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This UInt32 indicates whether the DNS server accepts dynamic update requests.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Values" TYPE="string"><VALUE.ARRAY><VALUE>Do not allow dynamic updates</VALUE><VALUE>Allow unsecure dynamic updates</VALUE><VALUE>Allow only secure dynamic updates</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="AutoCacheUpdate" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Boolean indicates whether the DNS server attempts to update its cache entries using data from root servers. When a DNS server boots, it needs a list of root server &apos;hints&apos; - NS and A records for the servers - historically called the cache file. The Microsoft DNS server has a feature to allow it to attempt to write back a new cache file based on the responses from the root servers.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="AutoConfigFileZones" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Uint32 indicates which standard primary zones authoritative for the name of the DNS server must be updated when the name of the server changes. The default value of this property is 1.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Valuemap" TYPE="string"><VALUE.ARRAY><VALUE>0</VALUE><VALUE>1</VALUE><VALUE>2</VALUE><VALUE>3</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="Values" TYPE="string"><VALUE.ARRAY><VALUE>None</VALUE><VALUE>Only those that allow dynamic updates</VALUE><VALUE>Only those that do not allow dynamic updates</VALUE><VALUE>All</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="BindSecondaries" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This property determines the AXFR message format when sending to non-Microsoft DNS secondaries. If this property is TRUE, the server will send transfers to non-Microsoft DNS secondaries in the uncompressed format. If this property is FALSE, the server will send all transfers in the fast format.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="BootMethod" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the DNS server&apos;s initialization method.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Values" TYPE="string"><VALUE.ARRAY><VALUE>Uninitialized</VALUE><VALUE>Boot from file</VALUE><VALUE>Boot from registry</VALUE><VALUE>Boot from directory and registry</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="DefaultAgingState" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Specifies the value of Enable Scavenging flag to be set for all Active Directory-integrated zones created on this server. The default value 0 corresponds to the Disabled scavenging of a zone.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="DefaultNoRefreshInterval" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Specifies the value of No-Refresh Interval to be set for all Active Directory-integrated zones created on this server. The default value of this property is 168 hours (7 days).</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Units" TYPE="string"><VALUE>Hours</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="DefaultRefreshInterval" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Specifies the value of Refresh Interval to be set for all Active Directory-integrated zones created on this server. The default value of this property is 168 hours (7 days).</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Units" TYPE="string"><VALUE>Hours</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="DisableAutoReverseZones" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This property indicates whether the DNS server automatically creates standard reverse lookup zones.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="DisjointNets" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Boolean indicates whether override is allowed of the default binding for a socket used to send queries to remote DNS servers.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="DsAvailable" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Boolean indicates whether there is an available DS on the DNS server.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="DsPollingInterval" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the interval (in seconds) to poll for changes in DS-integrated zones.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Units" TYPE="string"><VALUE>Seconds</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="DsTombstoneInterval" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>The lifetime (in seconds) of tombstoned records in DS-integrated zones.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Units" TYPE="string"><VALUE>Seconds</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="EDnsCacheTimeout" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Specifies the lifetime in seconds of the cached information describing the EDNS version supported by other DNS servers.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="EnableDirectoryPartitions" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This value is TRUE if support for application directory partitions is enabled on this server.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="EnableDnsSec" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Specifies whether the DNS server includes the DNSSEC specific RRs, KEY,SIG and NXT, in the response. If this value is 0, then no DNSSEC records are included in response, unless the query was requesting an RRset of the DNSSEC record type. If this value is 1, then DNSSEC records are included in response according to the RFC 2535. If this value is 2, then DNSSEC records are included in response only if the original client query contained the OPT RR according to the RFC 2671. If a query was requesting an RRset of the DNSSEC record type the DNS server will always respond with such records if they are available.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="EnableEDnsProbes" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Specifies the behavior of the DNS server with regard to the EDNS specified in the RFC 2671. If this value is FALSE, then the DNS server responds to the queries with response containing OPTs if OPTs are send in the original query, but doesn&apos;t include unsolicited OPTs in queries to other servers.If this value is TRUE then the server always OPT RRs according to RFC 2671 unless the remote server hasindicated that it does not support EDNS in a prior exchange.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="EventLogLevel" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates which events the DNS server records in the Event Viewer system log.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Valuemap" TYPE="string"><VALUE.ARRAY><VALUE>0</VALUE><VALUE>1</VALUE><VALUE>2</VALUE><VALUE>4</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="Values" TYPE="string"><VALUE.ARRAY><VALUE>None</VALUE><VALUE>Log only errors</VALUE><VALUE>Log only warnings and errors</VALUE><VALUE>Log all events</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="ForwardDelegations" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This property indicates whether queries to delegated sub-zones are forwarded.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY.ARRAY NAME="Forwarders" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE> This array of IP addresses are the servers to which this DNS server forwards queries that cannot be resolved with local data.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY.ARRAY><PROPERTY NAME="ForwardingTimeout" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates how long (in seconds) a DNS server, forwarding a query to a remote server listed in &quot;Forwarders&quot; will wait for a reply.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Units" TYPE="string"><VALUE>Seconds</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="IsSlave" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>A slave server will not attempt recursion if forwarding fails.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY.ARRAY NAME="ListenAddresses" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This array of strings enumerates the list of IP addresses on which the DNS server is allowed to receive queries.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY.ARRAY><PROPERTY NAME="LocalNetPriority" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Boolean indicates whether the DNS server gives priority to the local net address returning A records.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="LogFileMaxSize" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>The size in bytes of the DNS server&apos;s debug log.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="LogFilePath" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>The file name for the DNS server&apos;s debug log. By the file is system32\dns\dns.log. You may change this value. A relative path path is relative to SystemRoot\System32. You may also use absolute paths, but UNC paths are not supported.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY.ARRAY NAME="LogIPFilterList" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>List of IP addresses used to filter DNS events written to DNS server&apos;s debug log.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY.ARRAY><PROPERTY NAME="LogLevel" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This property controls what packets and events are written to the DNS server&apos;s debug log. This property should be set to specific values based on the following algorithm: Each policy is assigned a specific value: Query - 1, Notify - 16, Update - 32, Non-query transactions - 254, Questions - 256, Answers - 512, Send - 4096, Receive - 8192, UDP - 16384, TCP - 32768, All packets - 65535, Directory Service write transaction - 65536, Directory Service update transaction - 131072, Full Packets - 16777216, and Write Through - 2147483648. The sum of the values corresponding to all the policies to be activated is indicated in this property.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Valuemap" TYPE="string"><VALUE.ARRAY><VALUE>1</VALUE><VALUE>16</VALUE><VALUE>32</VALUE><VALUE>254</VALUE><VALUE>256</VALUE><VALUE>512</VALUE><VALUE>4096</VALUE><VALUE>8192</VALUE><VALUE>16384</VALUE><VALUE>32768</VALUE><VALUE>65535</VALUE><VALUE>65536</VALUE><VALUE>131072</VALUE><VALUE>16777216</VALUE><VALUE>2147483648</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="Values" TYPE="string"><VALUE.ARRAY><VALUE>Query</VALUE><VALUE>Notify</VALUE><VALUE>Update</VALUE><VALUE>Non-query transactions</VALUE><VALUE>Questions</VALUE><VALUE>Answers</VALUE><VALUE>Send</VALUE><VALUE>Receive</VALUE><VALUE>UDP</VALUE><VALUE>TCP</VALUE><VALUE>All packets</VALUE><VALUE>NT Directory Service write transaction</VALUE><VALUE>NT Directory Service update transaction</VALUE><VALUE>Full Packets</VALUE><VALUE>Write Through</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="LooseWildcarding" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Boolean indicates whether the DNS server does wildcarding loosely. If the LooseWildcarding property is undefined or zero, the server will follow the wildcarding behavior specified in the DNS RFC. In this case, an admin is advised to include MX records for all hosts that are not capable of receiving mail. If the LooseWildcarding property is non-zero, the server seeks out the closest wildcard node. In this case, an admin should put MX records at both the zone root and in a wildcard node (&apos;*&apos;) directly below the zone root. Also, the admin should put self-referent MX records on hosts, which are to receive their own mail.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="MaxCacheTTL" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates a maximum time (in seconds) a record from a recursive name query may remain in the DNS server cache. The DNS server deletes records from the cache when the value of this entry expires, even if the value of the TTL field in the record is greater. The default value of this property is 86,400 seconds (1 day).</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Units" TYPE="string"><VALUE>Seconds</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="MaxNegativeCacheTTL" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates a maximum time (in seconds) a name error result from a recursive name query may remain in the DNS server cache. The DNS server deletes records from the cache when the value of this entry expires, even if the value of the TTL field in the record is greater. The default value of this property is 86,400 seconds (1 day).</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Units" TYPE="string"><VALUE>Seconds</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="NameCheckFlag" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the set of eligible characters to be used in DNS names.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Valuemap" TYPE="string"><VALUE.ARRAY><VALUE>0</VALUE><VALUE>1</VALUE><VALUE>2</VALUE><VALUE>3</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="Values" TYPE="string"><VALUE.ARRAY><VALUE>Strict RFC (ANSI)</VALUE><VALUE>Non RFC (ANSI)</VALUE><VALUE>Multibyte (UTF8)</VALUE><VALUE>Any</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="NoRecursion" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Boolean indicates whether the DNS server does NOT do recursive lookups. If set to TRUE, recursive lookups are not done.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="RecursionRetry" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the interval (in seconds) before retrying a recursive lookup. If the RecursionRetry property is undefined or zero, retries are made after three seconds. Users are discouraged from altering this property. However, there are some scenarios where the property should be changed. One example is when the DNS server contacts remote servers over a slow link, and the DNS server is retrying BEFORE reception of a response from the remote DNS. In this case, raising the RecursionRetry timeout to be slightly longer than the observed response time from the remote DNS would be reasonable.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Units" TYPE="string"><VALUE>Seconds</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="RecursionTimeout" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the timeout (in seconds) before the DNS server gives up recursive query. If the RecursionTimeout property is undefined or zero, the DNS server gives up after fifteen seconds. In general, the fifteen-second timeout is sufficient to allow any outstanding response to get back to the DNS server. Users are discouraged from altering this property. One scenario where the property should be changed is when the DNS server contacts remote servers over a slow link, and the DNS server is observed rejecting queries (with SERVER_FAILURE) before responses are received. (Note, that client resolvers also retry queries, so careful investigation is required to determine that remote responses are really for the query that was timed out.) In this case, raising the RecursionTimeout to be slightly longer than the observed response time from the remote DNS would be reasonable.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Units" TYPE="string"><VALUE>Seconds</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="RoundRobin" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Boolean indicates whether the DNS server round robins multiple A records.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="RpcProtocol" TYPE="sint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the protocols over which administrative RPC runs. This property should be set to specific value based on the following algorithm: Every protocol to be used in RPC is assigned a specific value: None: 0, TCP/IP: 1, Named Pipes: 2, LPC: 4. The sum of the values corresponding to all the protocols to be used in RPC is indicated in this property.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="ScavengingInterval" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the time interval between two consecutive scavenging operations performed by the server. Zero value means that scavenging is not enabled on the server.The default value of this property is 168 hours (7 days).</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Units" TYPE="string"><VALUE>Hours</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="SecureResponses" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Boolean indicates whether the DNS server onlycaches resource records that are in the same subtree as the DNS server that provided them.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="SendPort" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the port on which the DNS server sends UDP queries to other servers. By default, the DNS server sends queries on a socket bound to the DNS port. Sometimes this situation is NOT desirable. The most obvious case occurs when an admin firewalls off the DNS port, to prevent outside access to the DNS server, but still wants the server to be able to contact Internet DNS servers to provide name resolution for internal clients. This is also desirable if the DNS server is supporting disjoint nets (if true, the boolean property, DisjointNets, would be set to TRUE). In these cases, setting the SendPort property to a non-zero value causes the DNS server to bind to an arbitrary port for sending to remote DNS servers.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY.ARRAY NAME="ServerAddresses" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This array of strings enumerates the list of the DNS server&apos;s IP addresses.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY.ARRAY><PROPERTY NAME="StrictFileParsing" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Boolean indicates whether the DNS server parses zone files strictly. If the StrictFileParsing property is undefined or zero, the server will log and ignore bad data in the zone file and continue to load. If the StrictFileParsing property is non-zero, the server will log and fail on zone file errors.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="UpdateOptions" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This value restricts the type of records that can be dynamically updated on the server. This parameter is a further restriction on dynamic updates applied after the AllowUpdate setting on Server and Zone objects. Use these values: &quot;No restrictions&quot; = 0, &quot;Do not allow dynamic updates of SOA records&quot; = 1, &quot;Do not allow dynamic updates of NS records at the zone root&quot; = 2, &quot;Do not allow dynamic updates of NS records not at the zone root (delegation NS records)&quot; = 4. Sum these values to determine the setting value. </VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="Version" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the version of the DNS server.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="WriteAuthorityNS" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Boolean indicates whether the DNS server writes NS and SOA records to the authority section on successful response.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="XfrConnectTimeout" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Timeout in seconds the DNS server will wait for a successful TCP connection to a remote server when attempting a zone transfer.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><METHOD NAME="StartService" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This method starts the DNS server.</VALUE></QUALIFIER><QUALIFIER NAME="Implemented" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER></METHOD><METHOD NAME="StopService" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This method stops the DNS server.</VALUE></QUALIFIER><QUALIFIER NAME="Implemented" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER></METHOD><METHOD NAME="StartScavenging" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This method starts the scavenging of stale records in the zones subjected to scavenging.</VALUE></QUALIFIER><QUALIFIER NAME="Implemented" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER></METHOD><METHOD NAME="GetDistinguishedName" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This method get DS distinguished Name for the zone.</VALUE></QUALIFIER><QUALIFIER NAME="Implemented" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER></METHOD></CLASS> - - - - - - - + + + + Microsoft.Management.Infrastructure.CimInstance#root/MicrosoftDNS/MicrosoftDNS_Server + Microsoft.Management.Infrastructure.CimInstance#ROOT/MicrosoftDNS/CIM_Service + Microsoft.Management.Infrastructure.CimInstance#ROOT/MicrosoftDNS/CIM_LogicalElement + Microsoft.Management.Infrastructure.CimInstance#ROOT/MicrosoftDNS/CIM_ManagedSystemElement + Microsoft.Management.Infrastructure.CimInstance#MicrosoftDNS_Server + Microsoft.Management.Infrastructure.CimInstance#CIM_Service + Microsoft.Management.Infrastructure.CimInstance#CIM_LogicalElement + Microsoft.Management.Infrastructure.CimInstance#CIM_ManagedSystemElement + Microsoft.Management.Infrastructure.CimInstance + System.Object + + MicrosoftDNS_Server (Name = "DC1.contoso.com") + + + + + DC1.contoso.com + OK + + true + Automatic + + + 0 + 1 + false + 1 + false + 3 + false + 168 + 168 + false + false + true + 180 + 1209600 + 900 + true + 1 + true + 4 + 0 + + + System.String[] + System.Array + System.Object + + + 168.63.129.16 + 8.8.8.8 + + + 3 + true + + + + 10.0.0.4 + + + true + 500000000 + C:\Windows\System32\DNS\DNS.log + + 50393905 + false + 86400 + 900 + 2 + false + 3 + 8 + true + 5 + 168 + true + 0 + + + + fe80::7da3:a014:6581:2cdc + 10.0.0.4 + + + false + 783 + 629146374 + false + 30 + + + + + + System.Collections.ArrayList + System.Object + + + + + CIM_ManagedSystemElement + ROOT/MicrosoftDNS + DC1 + -549583800 + <CLASS NAME="CIM_ManagedSystemElement"><QUALIFIER NAME="Abstract" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Description" TYPE="string"><VALUE>The ManagedSystemElement class is the base class for the system element hierarchy. Membership Criteria: Any distinguishable component of a system is a candidate for inclusion in this class.&lt;P&gt;Examples: Software components, such as files; and devices, such as disk drives and controllers, and physical components such as chips and cards.</VALUE></QUALIFIER><QUALIFIER NAME="Locale" TYPE="sint32" TOSUBCLASS="false"><VALUE>1033</VALUE></QUALIFIER><QUALIFIER NAME="UUID" TYPE="string" TOSUBCLASS="false"><VALUE>{8502C517-5FBB-11D2-AAC1-006008C78BC7}</VALUE></QUALIFIER><PROPERTY NAME="Caption" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>The Caption property is a short textual description (one-line string) of the object.</VALUE></QUALIFIER><QUALIFIER NAME="MaxLen" TYPE="sint32"><VALUE>64</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="Description" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>The Description property provides a textual description of the object. </VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="InstallDate" TYPE="datetime"><QUALIFIER NAME="Description" TYPE="string"><VALUE>A datetime value indicating when the object was installed. A lack of a value does not indicate that the object is not installed.</VALUE></QUALIFIER><QUALIFIER NAME="MappingStrings" TYPE="string"><VALUE.ARRAY><VALUE>MIF.DMTF|ComponentID|001.5</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="Name" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>The Name property defines the label by which the object is known. When subclassed, the Name property can be overridden to be a Key property.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="Status" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>A string indicating the current status of the object.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="ValueMap" TYPE="string"><VALUE.ARRAY><VALUE>OK</VALUE><VALUE>Error</VALUE><VALUE>Degraded</VALUE><VALUE>Unknown</VALUE></VALUE.ARRAY></QUALIFIER></PROPERTY></CLASS> + + + + + CIM_LogicalElement + ROOT/MicrosoftDNS + DC1 + -549567160 + <CLASS NAME="CIM_LogicalElement" SUPERCLASS="CIM_ManagedSystemElement"><QUALIFIER NAME="Description" TYPE="string"><VALUE>The CIM_LogicalElement class is the base class for all the components of the system that represent abstract system components.&lt;P&gt;Example: Profiles, processes, or system capabilities in the form of logical devices.</VALUE></QUALIFIER><QUALIFIER NAME="Abstract" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Locale" TYPE="sint32" TOSUBCLASS="false"><VALUE>1033</VALUE></QUALIFIER><QUALIFIER NAME="UUID" TYPE="string" TOSUBCLASS="false"><VALUE>{8502C518-5FBB-11D2-AAC1-006008C78BC7}</VALUE></QUALIFIER></CLASS> + + + + + CIM_Service + ROOT/MicrosoftDNS + DC1 + -549556760 + <CLASS NAME="CIM_Service" SUPERCLASS="CIM_LogicalElement"><QUALIFIER NAME="Description" TYPE="string"><VALUE>A logical element that contains the information necessary to represent and manage the functionality provided by a Device and/or SoftwareFeature. A Service is a general-purpose object to configure and manage the implementation of functionality. It is not the functionality itself.</VALUE></QUALIFIER><QUALIFIER NAME="Abstract" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Locale" TYPE="sint32" TOSUBCLASS="false"><VALUE>1033</VALUE></QUALIFIER><QUALIFIER NAME="UUID" TYPE="string" TOSUBCLASS="false"><VALUE>{8502C527-5FBB-11D2-AAC1-006008C78BC7}</VALUE></QUALIFIER><PROPERTY NAME="Name" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>The Name property uniquely identifies the Service and provides an indication of the functionality that is managed. This functionality is described in more detail in the object&apos;s Description property. </VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="key" TYPE="boolean" OVERRIDABLE="false"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Override" TYPE="string"><VALUE>Name</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="CreationClassName" TYPE="string"><QUALIFIER NAME="CIM_Key" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="Started" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>ServiceStarted is a boolean indicating whether the Service has been started (TRUE), or stopped (FALSE).</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="StartMode" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>StartMode is a string value indicating whether the Service is automatically started by a System, Operating System, etc. or only started upon request.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="ValueMap" TYPE="string"><VALUE.ARRAY><VALUE>Automatic</VALUE><VALUE>Manual</VALUE></VALUE.ARRAY></QUALIFIER></PROPERTY><PROPERTY NAME="SystemCreationClassName" TYPE="string"><QUALIFIER NAME="CIM_Key" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Description" TYPE="string"><VALUE>The type name of the system that hosts this service</VALUE></QUALIFIER><QUALIFIER NAME="Propagated" TYPE="string"><VALUE>CIM_System.CreationClassName</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="SystemName" TYPE="string"><QUALIFIER NAME="CIM_Key" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Description" TYPE="string"><VALUE>The name of the system that hosts this service</VALUE></QUALIFIER><QUALIFIER NAME="Propagated" TYPE="string"><VALUE>CIM_System.Name</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><METHOD NAME="StartService" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>The StartService method places the Service in the started state. It returns an integer value of 0 if the Service was successfully started, 1 if the request is not supported and any other number to indicate an error.</VALUE></QUALIFIER></METHOD><METHOD NAME="StopService" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>The StopService method places the Service in the stopped state. It returns an integer value of 0 if the Service was successfully stopped, 1 if the request is not supported and any other number to indicate an error.</VALUE></QUALIFIER></METHOD></CLASS> + + + + + MicrosoftDNS_Server + root/MicrosoftDNS + DC1 + -549553640 + <CLASS NAME="MicrosoftDNS_Server" SUPERCLASS="CIM_Service"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This class describes a DNS server. Every instance of this class may be associated with (or more intuitively &apos;may contain&apos;) one instance of class MicrosoftDNS_Cache, one instance of class MicrosoftDNS_RootHints and multiple instances of class MicrosoftDNS_Zone.</VALUE></QUALIFIER><QUALIFIER NAME="dynamic" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Locale" TYPE="sint32" TOSUBCLASS="false"><VALUE>1033</VALUE></QUALIFIER><QUALIFIER NAME="provider" TYPE="string" TOSUBCLASS="false"><VALUE>MS_NT_DNS_PROVIDER</VALUE></QUALIFIER><QUALIFIER NAME="Schema" TYPE="string"><VALUE>MicrosoftDNS</VALUE></QUALIFIER><QUALIFIER NAME="UUID" TYPE="string" TOSUBCLASS="false"><VALUE>{3E9F9B09-AA43-11d2-85DD-0000F8102E5F}</VALUE></QUALIFIER><PROPERTY NAME="Name" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the Fully Qualified Domain Name or IP address of the DNS server.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="key" TYPE="boolean" OVERRIDABLE="false"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Override" TYPE="string"><VALUE>Name</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="AddressAnswerLimit" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the maximum number of host records returned in response to an address request. Values between 5 and 28 are valid.</VALUE></QUALIFIER><QUALIFIER NAME="Not_NULL" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="AllowUpdate" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This UInt32 indicates whether the DNS server accepts dynamic update requests.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Values" TYPE="string"><VALUE.ARRAY><VALUE>Do not allow dynamic updates</VALUE><VALUE>Allow unsecure dynamic updates</VALUE><VALUE>Allow only secure dynamic updates</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="AutoCacheUpdate" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Boolean indicates whether the DNS server attempts to update its cache entries using data from root servers. When a DNS server boots, it needs a list of root server &apos;hints&apos; - NS and A records for the servers - historically called the cache file. The Microsoft DNS server has a feature to allow it to attempt to write back a new cache file based on the responses from the root servers.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="AutoConfigFileZones" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Uint32 indicates which standard primary zones authoritative for the name of the DNS server must be updated when the name of the server changes. The default value of this property is 1.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Valuemap" TYPE="string"><VALUE.ARRAY><VALUE>0</VALUE><VALUE>1</VALUE><VALUE>2</VALUE><VALUE>3</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="Values" TYPE="string"><VALUE.ARRAY><VALUE>None</VALUE><VALUE>Only those that allow dynamic updates</VALUE><VALUE>Only those that do not allow dynamic updates</VALUE><VALUE>All</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="BindSecondaries" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This property determines the AXFR message format when sending to non-Microsoft DNS secondaries. If this property is TRUE, the server will send transfers to non-Microsoft DNS secondaries in the uncompressed format. If this property is FALSE, the server will send all transfers in the fast format.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="BootMethod" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the DNS server&apos;s initialization method.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Values" TYPE="string"><VALUE.ARRAY><VALUE>Uninitialized</VALUE><VALUE>Boot from file</VALUE><VALUE>Boot from registry</VALUE><VALUE>Boot from directory and registry</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="DefaultAgingState" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Specifies the value of Enable Scavenging flag to be set for all Active Directory-integrated zones created on this server. The default value 0 corresponds to the Disabled scavenging of a zone.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="DefaultNoRefreshInterval" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Specifies the value of No-Refresh Interval to be set for all Active Directory-integrated zones created on this server. The default value of this property is 168 hours (7 days).</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Units" TYPE="string"><VALUE>Hours</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="DefaultRefreshInterval" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Specifies the value of Refresh Interval to be set for all Active Directory-integrated zones created on this server. The default value of this property is 168 hours (7 days).</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Units" TYPE="string"><VALUE>Hours</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="DisableAutoReverseZones" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This property indicates whether the DNS server automatically creates standard reverse lookup zones.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="DisjointNets" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Boolean indicates whether override is allowed of the default binding for a socket used to send queries to remote DNS servers.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="DsAvailable" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Boolean indicates whether there is an available DS on the DNS server.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="DsPollingInterval" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the interval (in seconds) to poll for changes in DS-integrated zones.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Units" TYPE="string"><VALUE>Seconds</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="DsTombstoneInterval" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>The lifetime (in seconds) of tombstoned records in DS-integrated zones.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Units" TYPE="string"><VALUE>Seconds</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="EDnsCacheTimeout" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Specifies the lifetime in seconds of the cached information describing the EDNS version supported by other DNS servers.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="EnableDirectoryPartitions" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This value is TRUE if support for application directory partitions is enabled on this server.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="EnableDnsSec" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Specifies whether the DNS server includes the DNSSEC specific RRs, KEY,SIG and NXT, in the response. If this value is 0, then no DNSSEC records are included in response, unless the query was requesting an RRset of the DNSSEC record type. If this value is 1, then DNSSEC records are included in response according to the RFC 2535. If this value is 2, then DNSSEC records are included in response only if the original client query contained the OPT RR according to the RFC 2671. If a query was requesting an RRset of the DNSSEC record type the DNS server will always respond with such records if they are available.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="EnableEDnsProbes" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Specifies the behavior of the DNS server with regard to the EDNS specified in the RFC 2671. If this value is FALSE, then the DNS server responds to the queries with response containing OPTs if OPTs are send in the original query, but doesn&apos;t include unsolicited OPTs in queries to other servers.If this value is TRUE then the server always OPT RRs according to RFC 2671 unless the remote server hasindicated that it does not support EDNS in a prior exchange.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="EventLogLevel" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates which events the DNS server records in the Event Viewer system log.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Valuemap" TYPE="string"><VALUE.ARRAY><VALUE>0</VALUE><VALUE>1</VALUE><VALUE>2</VALUE><VALUE>4</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="Values" TYPE="string"><VALUE.ARRAY><VALUE>None</VALUE><VALUE>Log only errors</VALUE><VALUE>Log only warnings and errors</VALUE><VALUE>Log all events</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="ForwardDelegations" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This property indicates whether queries to delegated sub-zones are forwarded.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY.ARRAY NAME="Forwarders" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE> This array of IP addresses are the servers to which this DNS server forwards queries that cannot be resolved with local data.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY.ARRAY><PROPERTY NAME="ForwardingTimeout" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates how long (in seconds) a DNS server, forwarding a query to a remote server listed in &quot;Forwarders&quot; will wait for a reply.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Units" TYPE="string"><VALUE>Seconds</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="IsSlave" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>A slave server will not attempt recursion if forwarding fails.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY.ARRAY NAME="ListenAddresses" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This array of strings enumerates the list of IP addresses on which the DNS server is allowed to receive queries.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY.ARRAY><PROPERTY NAME="LocalNetPriority" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Boolean indicates whether the DNS server gives priority to the local net address returning A records.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="LogFileMaxSize" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>The size in bytes of the DNS server&apos;s debug log.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="LogFilePath" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>The file name for the DNS server&apos;s debug log. By the file is system32\dns\dns.log. You may change this value. A relative path path is relative to SystemRoot\System32. You may also use absolute paths, but UNC paths are not supported.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY.ARRAY NAME="LogIPFilterList" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>List of IP addresses used to filter DNS events written to DNS server&apos;s debug log.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY.ARRAY><PROPERTY NAME="LogLevel" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This property controls what packets and events are written to the DNS server&apos;s debug log. This property should be set to specific values based on the following algorithm: Each policy is assigned a specific value: Query - 1, Notify - 16, Update - 32, Non-query transactions - 254, Questions - 256, Answers - 512, Send - 4096, Receive - 8192, UDP - 16384, TCP - 32768, All packets - 65535, Directory Service write transaction - 65536, Directory Service update transaction - 131072, Full Packets - 16777216, and Write Through - 2147483648. The sum of the values corresponding to all the policies to be activated is indicated in this property.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Valuemap" TYPE="string"><VALUE.ARRAY><VALUE>1</VALUE><VALUE>16</VALUE><VALUE>32</VALUE><VALUE>254</VALUE><VALUE>256</VALUE><VALUE>512</VALUE><VALUE>4096</VALUE><VALUE>8192</VALUE><VALUE>16384</VALUE><VALUE>32768</VALUE><VALUE>65535</VALUE><VALUE>65536</VALUE><VALUE>131072</VALUE><VALUE>16777216</VALUE><VALUE>2147483648</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="Values" TYPE="string"><VALUE.ARRAY><VALUE>Query</VALUE><VALUE>Notify</VALUE><VALUE>Update</VALUE><VALUE>Non-query transactions</VALUE><VALUE>Questions</VALUE><VALUE>Answers</VALUE><VALUE>Send</VALUE><VALUE>Receive</VALUE><VALUE>UDP</VALUE><VALUE>TCP</VALUE><VALUE>All packets</VALUE><VALUE>NT Directory Service write transaction</VALUE><VALUE>NT Directory Service update transaction</VALUE><VALUE>Full Packets</VALUE><VALUE>Write Through</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="LooseWildcarding" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Boolean indicates whether the DNS server does wildcarding loosely. If the LooseWildcarding property is undefined or zero, the server will follow the wildcarding behavior specified in the DNS RFC. In this case, an admin is advised to include MX records for all hosts that are not capable of receiving mail. If the LooseWildcarding property is non-zero, the server seeks out the closest wildcard node. In this case, an admin should put MX records at both the zone root and in a wildcard node (&apos;*&apos;) directly below the zone root. Also, the admin should put self-referent MX records on hosts, which are to receive their own mail.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="MaxCacheTTL" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates a maximum time (in seconds) a record from a recursive name query may remain in the DNS server cache. The DNS server deletes records from the cache when the value of this entry expires, even if the value of the TTL field in the record is greater. The default value of this property is 86,400 seconds (1 day).</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Units" TYPE="string"><VALUE>Seconds</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="MaxNegativeCacheTTL" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates a maximum time (in seconds) a name error result from a recursive name query may remain in the DNS server cache. The DNS server deletes records from the cache when the value of this entry expires, even if the value of the TTL field in the record is greater. The default value of this property is 86,400 seconds (1 day).</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Units" TYPE="string"><VALUE>Seconds</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="NameCheckFlag" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the set of eligible characters to be used in DNS names.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Valuemap" TYPE="string"><VALUE.ARRAY><VALUE>0</VALUE><VALUE>1</VALUE><VALUE>2</VALUE><VALUE>3</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="Values" TYPE="string"><VALUE.ARRAY><VALUE>Strict RFC (ANSI)</VALUE><VALUE>Non RFC (ANSI)</VALUE><VALUE>Multibyte (UTF8)</VALUE><VALUE>Any</VALUE></VALUE.ARRAY></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="NoRecursion" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Boolean indicates whether the DNS server does NOT do recursive lookups. If set to TRUE, recursive lookups are not done.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="RecursionRetry" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the interval (in seconds) before retrying a recursive lookup. If the RecursionRetry property is undefined or zero, retries are made after three seconds. Users are discouraged from altering this property. However, there are some scenarios where the property should be changed. One example is when the DNS server contacts remote servers over a slow link, and the DNS server is retrying BEFORE reception of a response from the remote DNS. In this case, raising the RecursionRetry timeout to be slightly longer than the observed response time from the remote DNS would be reasonable.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Units" TYPE="string"><VALUE>Seconds</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="RecursionTimeout" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the timeout (in seconds) before the DNS server gives up recursive query. If the RecursionTimeout property is undefined or zero, the DNS server gives up after fifteen seconds. In general, the fifteen-second timeout is sufficient to allow any outstanding response to get back to the DNS server. Users are discouraged from altering this property. One scenario where the property should be changed is when the DNS server contacts remote servers over a slow link, and the DNS server is observed rejecting queries (with SERVER_FAILURE) before responses are received. (Note, that client resolvers also retry queries, so careful investigation is required to determine that remote responses are really for the query that was timed out.) In this case, raising the RecursionTimeout to be slightly longer than the observed response time from the remote DNS would be reasonable.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Units" TYPE="string"><VALUE>Seconds</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="RoundRobin" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Boolean indicates whether the DNS server round robins multiple A records.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="RpcProtocol" TYPE="sint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the protocols over which administrative RPC runs. This property should be set to specific value based on the following algorithm: Every protocol to be used in RPC is assigned a specific value: None: 0, TCP/IP: 1, Named Pipes: 2, LPC: 4. The sum of the values corresponding to all the protocols to be used in RPC is indicated in this property.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="ScavengingInterval" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the time interval between two consecutive scavenging operations performed by the server. Zero value means that scavenging is not enabled on the server.The default value of this property is 168 hours (7 days).</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="Units" TYPE="string"><VALUE>Hours</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="SecureResponses" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Boolean indicates whether the DNS server onlycaches resource records that are in the same subtree as the DNS server that provided them.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="SendPort" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the port on which the DNS server sends UDP queries to other servers. By default, the DNS server sends queries on a socket bound to the DNS port. Sometimes this situation is NOT desirable. The most obvious case occurs when an admin firewalls off the DNS port, to prevent outside access to the DNS server, but still wants the server to be able to contact Internet DNS servers to provide name resolution for internal clients. This is also desirable if the DNS server is supporting disjoint nets (if true, the boolean property, DisjointNets, would be set to TRUE). In these cases, setting the SendPort property to a non-zero value causes the DNS server to bind to an arbitrary port for sending to remote DNS servers.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY.ARRAY NAME="ServerAddresses" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This array of strings enumerates the list of the DNS server&apos;s IP addresses.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY.ARRAY><PROPERTY NAME="StrictFileParsing" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Boolean indicates whether the DNS server parses zone files strictly. If the StrictFileParsing property is undefined or zero, the server will log and ignore bad data in the zone file and continue to load. If the StrictFileParsing property is non-zero, the server will log and fail on zone file errors.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="UpdateOptions" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This value restricts the type of records that can be dynamically updated on the server. This parameter is a further restriction on dynamic updates applied after the AllowUpdate setting on Server and Zone objects. Use these values: &quot;No restrictions&quot; = 0, &quot;Do not allow dynamic updates of SOA records&quot; = 1, &quot;Do not allow dynamic updates of NS records at the zone root&quot; = 2, &quot;Do not allow dynamic updates of NS records not at the zone root (delegation NS records)&quot; = 4. Sum these values to determine the setting value. </VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="Version" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Indicates the version of the DNS server.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="WriteAuthorityNS" TYPE="boolean"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This Boolean indicates whether the DNS server writes NS and SOA records to the authority section on successful response.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><PROPERTY NAME="XfrConnectTimeout" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>Timeout in seconds the DNS server will wait for a successful TCP connection to a remote server when attempting a zone transfer.</VALUE></QUALIFIER><QUALIFIER NAME="read" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER><QUALIFIER NAME="write" TYPE="boolean"><VALUE>true</VALUE></QUALIFIER></PROPERTY><METHOD NAME="StartService" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This method starts the DNS server.</VALUE></QUALIFIER><QUALIFIER NAME="Implemented" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER></METHOD><METHOD NAME="StopService" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This method stops the DNS server.</VALUE></QUALIFIER><QUALIFIER NAME="Implemented" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER></METHOD><METHOD NAME="StartScavenging" TYPE="uint32"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This method starts the scavenging of stale records in the zones subjected to scavenging.</VALUE></QUALIFIER><QUALIFIER NAME="Implemented" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER></METHOD><METHOD NAME="GetDistinguishedName" TYPE="string"><QUALIFIER NAME="Description" TYPE="string"><VALUE>This method get DS distinguished Name for the zone.</VALUE></QUALIFIER><QUALIFIER NAME="Implemented" TYPE="boolean" TOSUBCLASS="false"><VALUE>true</VALUE></QUALIFIER></METHOD></CLASS> + + + + + + + diff --git a/README.md b/README.md index 305c5e34..65409b9c 100644 --- a/README.md +++ b/README.md @@ -165,6 +165,8 @@ Please check out common DSC Resources [contributing guidelines](https://github.c ### Unreleased +### 1.12.0.0 + * Update appveyor.yml to use the default template. * Added default template files .codecov.yml, .gitattributes, and .gitignore, and .vscode folder. * Added UseRootHint property to xDnsServerForwarder resource. diff --git a/xDnsServer.psd1 b/xDnsServer.psd1 index b81cf808..4b21d96b 100644 --- a/xDnsServer.psd1 +++ b/xDnsServer.psd1 @@ -1,6 +1,6 @@ @{ # Version number of this module. -moduleVersion = '1.11.0.0' +moduleVersion = '1.12.0.0' # ID used to uniquely identify this module GUID = '5f70e6a1-f1b2-4ba0-8276-8967d43a7ec2' @@ -47,20 +47,9 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Changes to xDnsServer - * Updated appveyor.yml to use the default template and add CodeCov support - ([issue 73](https://github.com/PowerShell/xActiveDirectory/issues/73)). - * Adding a Branches section to the README.md with Codecov badges for both - master and dev branch ([issue 73](https://github.com/PowerShell/xActiveDirectory/issues/73)). - * Updated description of resource module in README.md. -* Added resource xDnsServerZoneAging. [Claudio Spizzi (@claudiospizzi)](https://github.com/claudiospizzi) -* Changes to xDnsServerPrimaryZone - * Fix bug in Get-TargetResource that caused the Zone Name to be null - ([issue 63](https://github.com/PowerShell/xDnsServer/issues/63)). - [Brandon Padgett (@gerane)](https://github.com/gerane) -* Changes to xDnsRecord - * Added Ptr record support (partly resolves issue 34). - [Reggie Gibson (@regedit32)](https://github.com/regedit32) + ReleaseNotes = '* Update appveyor.yml to use the default template. +* Added default template files .codecov.yml, .gitattributes, and .gitignore, and .vscode folder. +* Added UseRootHint property to xDnsServerForwarder resource. ' @@ -75,3 +64,4 @@ PrivateData = @{ +