TestimoX

API Reference

Command

Get-ADXDnsZoneOverview

Namespace ADPlayground.PowerShell
Inputs
System.String System.String[]
Outputs
ADPlayground.Dns.DnsZoneOverviewItem ADPlayground.Dns.DnsZoneOverviewReviewItem ADPlayground.Dns.DnsZoneOverviewSummaryItem ADPlayground.Dns.DomainDnsZoneOverviewSnapshot

Returns a review-oriented overview of Microsoft DNS zones across domain DNS servers.

Examples

Authored help example

Example 1: Return a domain-wide DNS zone overview snapshot


Get-ADXDnsZoneOverview -Domain 'contoso.com'
        

Example 2: Return per-zone summaries for review


Get-ADXDnsZoneOverview -Domain 'contoso.com' -AsZone | Format-Table ZoneName, HostingServerCount, HasSettingDrift, ScavengingOwnerCount
        

Example 3: Return review notes for odd or inconsistent zone settings


Get-ADXDnsZoneOverview -Domain 'contoso.com' -AsReviewItem
        

Common Parameters

This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.

For more information, see about_CommonParameters.

Syntax

Get-ADXDnsZoneOverview [-Domain <string>] [-AsItem] [-AsReviewItem] [-AsZone] [-DnsServer <string[]>] [<CommonParameters>]
#

Parameters

Domain string optionalposition: 0pipeline: true (ByPropertyName)
Domain name associated with the overview.
AsItem SwitchParameter optionalposition: namedpipeline: false
Emit each per-server zone row instead of the overview snapshot.
AsReviewItem SwitchParameter optionalposition: namedpipeline: false
Emit each review item instead of the overview snapshot.
AsZone SwitchParameter optionalposition: namedpipeline: false
Emit each aggregated per-zone summary instead of the overview snapshot.
DnsServer string[] optionalposition: namedpipeline: true (ByPropertyName)
Explicit DNS servers to query. When omitted, domain controllers are enumerated from the domain.

Outputs

ADPlayground.Dns.DnsZoneOverviewItem, ADPlayground.Dns.DnsZoneOverviewReviewItem, ADPlayground.Dns.DnsZoneOverviewSummaryItem, ADPlayground.Dns.DomainDnsZoneOverviewSnapshot