Get-DnsServerResourceRecord
Get-DnsServerResourceRecord
Gets resource records from a specified DNS zone.
Syntax
Parameter Set: Get0
Get-DnsServerResourceRecord [-ZoneName] <String> [[-Name] <String> ] [[-RRType] <String> ] [-AsJob] [-CimSession <CimSession[]> ] [-ComputerName <String> ] [-Node] [-ThrottleLimit <Int32> ] [ <CommonParameters>]
Detailed Description
The Get-DnsServerResourceRecord cmdlet gets the following information for a specified resource record from a Domain Name System (DNS) zone:
-- HostName
-- RecordType
-- RecordClass
-- TimeToLive
-- Timestamp
-- RecordData
Parameters
-AsJob
Aliases |
none |
Required? |
false |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
-CimSession<CimSession[]>
Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a New-CimSession or Get-CimSession cmdlet. The default is the current session on the local computer.
Aliases |
none |
Required? |
false |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
-ComputerName<String>
Specifies a DNS server. If you do not specify this parameter, the command runs on the local system. You can specify an IP address or any value that resolves to an IP address, such as a fully qualified domain name (FQDN), host name, or NETBIOS name.
Aliases |
none |
Required? |
false |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
-Name<String>
Specifies the name of a DNS server resource record object.
Aliases |
none |
Required? |
false |
Position? |
3 |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
-Node
Specifies only the parameters at root of the Name parameter.
Aliases |
none |
Required? |
false |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
-RRType<String>
Specifies the type of resource record.
The acceptable values for this parameter are:
-- HInfo
-- Afsdb
-- Atma
-- Isdn
-- Key
-- Mb
-- Md
-- Mf
-- Mg
-- MInfo
-- Mr
-- Mx
-- NsNxt
-- Rp
-- Rt
-- Wks
-- X25
-- A
-- AAAA
-- CName
-- Ptr
-- Srv
-- Txt
-- Wins
-- WinsR
-- Ns
-- Soa
-- NasP
-- NasPtr
-- DName
-- Gpos
-- Loc
-- DhcId
-- Naptr
-- RRSig
-- DnsKey
-- DS
-- NSec
-- NSec3
-- NSec3Param
Aliases |
none |
Required? |
false |
Position? |
4 |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
-ThrottleLimit<Int32>
Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of 0
is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer.
Aliases |
none |
Required? |
false |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
-ZoneName<String>
Specifies the name of a DNS server zone.
Aliases |
none |
Required? |
true |
Position? |
2 |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
<CommonParameters>
This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).
Inputs
The input type is the type of the objects that you can pipe to the cmdlet.
Outputs
The output type is the type of the objects that the cmdlet emits.
- Microsoft.Management.Infrastructure.CimInstance#DnsServerResourceRecord[]
Examples
Example 1: Get all resource records in a specified zone
This command gets all DNS server resource records in a zone named contoso.com.
PS C:\> Get-DnsServerResourceRecord -ZoneName "contoso.com"
Example 2: Get all resource records in a zone for a specified node
This command gets all DNS server resource records in a zone named contoso.com from the node named Admin01.
PS C:\> Get-DnsServerResourceRecord -ZoneName "contoso.com" -Name "Admin01"
Example 3: Get all resource records in a zone by specified host name
This command gets all DNS server resource records in a zone named contoso.com that have the name Host02. The command is similar to the one in example 2, but in this case the command uses a host name instead of a node name.
PS C:\> Get-DnsServerResourceRecord -ZoneName "contoso.com" -Name "Host02"
Example 4: Get all A records in a zone by specified host nameand specified typeand specified type
This command gets all A records in a zone named contoso.com that have the name Host03.
PS C:\> Get-DnsServerResourceRecord -ZoneName "contoso.com" -Name "Host03" -RRType "A"
Example 5: Get all A records in a specified zone
This command gets all A records in a zone named contoso.com.
PS C:\> Get-DnsServerResourceRecord -ZoneName "contoso.com" -RRType "A"
Example 6: Get all NS records at the root of a specified zone
This command gets all NS records at the root of a zone named contoso.com.
PS C:\> Get-DnsServerResourceRecord -ZoneName "contoso.com" -RRType "NS" -Node