Problem
You want to view the zones on a server.
Solution
Using a graphical user interface
- Open the DNS Management snap-in.
- Right-click on DNS in the left pane and select “Connect to DNS Server.”
- Enter the server you want to connect to and click Enter.
- In the left pane, expand the server and click Forward Lookup Zones and Reverse Lookup Zones to view the hosted zones.
Using a command-line interface
> dnscmd <DNSServerName> /enumzones
Using VBScript
‘ This code lists the zones that are hosted by the specified server.
‘ —— SCRIPT CONFIGURATION ——
strServer = “<DNSServerName>” ‘ e.g. dc1.rallencorp.com
‘ —— END CONFIGURATION ——–
set objDNS = GetObject(“winMgmts:\\” & strServer & “\root\MicrosoftDNS”)
set objDNSServer = objDNS.Get(“MicrosoftDNS_Server.Name=””.”””)
set objZones = objDNS.ExecQuery(“Select * from MicrosoftDNS_Zone ” & _
“Where DnsServerName = ‘” & _
objDNSServer.Name & “‘”)
WScript.Echo “Zones on ” & objDNSServer.Name
for each objZone in objZones
WScript.Echo ” ” & objZOne.Name
next
Discussion
Using a graphical user interface
When you click on either the Forward Lookup Zones or Reverse Lookup Zones in the lefthand pane of the DMS MMC, the right pane contains a Type column that displays the zone type for each zone.
Using a command-line interface
When using the /enumzones switch without any more parameters, it displays all zones on the server. You can specify additional filters that limit the types of zones returned. With the Windows 2000 version of dnscmd, you can specify up to two filters (for example, using the /enumzones / primary / forward switch combination will display all primary forward zones on the server):
Filter1:
/Primary
/Secondary
/Cache
/Auto-Created
Filter2:
/Forward
/Reverse
With the Windows Server 2003 version of dnscmd, the filter behavior has changed. Instead of having two levels of criteria, you can specify one or more of the following:
/Primary
Lists both standard and Active Directoryintegrated primary zones
/Secondary
Lists all standard secondary zones
/Forwarder
Lists all zones that forward unresolvable queries to another DNS server
/Stub
Lists all stub zones hosted on a server
/Cache
Lists zones that are loaded into cache on the server
/Auto-Created
Lists zones that were created automatically during the DNS server installation
/Forward
Lists all forward lookup zones
/Reverse
Lists all reverse lookup zones
/Ds
Lists all Active Directoryintegrated zones
/File
Lists zones that are stored in text files
/DomainDirectoryPartition
Lists zones that are stored in the DomainDNSZones partition
/ForestDirectoryPartition
Lists zones that are stored in the ForestDNSZones partition
/CustomDirectoryPartition
Lists zones that are stored in a user-created directory partition
/LegacyDirectoryPartition
Lists zones that are stored in the domain NC
/DirectoryPartition <PartitionName>
Lists zones that are stored in a particular application partition
Using VBScript
A WQL query was used to find all MicrosoftDNS_Zone objects. You can add additional criteria to the WQL Select statement to return a subset of zones supported on the server.