Import-DnsServerTrustAnchor

Import-DnsServerTrustAnchor

Imports a trust anchor for a DNS server.

Syntax

Parameter Set: KeySet
Import-DnsServerTrustAnchor [-KeySetFile] <String> [-AsJob] [-CimSession <CimSession[]> ] [-ComputerName <String> ] [-PassThru] [-ThrottleLimit <Int32> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: DSSet
Import-DnsServerTrustAnchor -DSSetFile <String> [-AsJob] [-CimSession <CimSession[]> ] [-ComputerName <String> ] [-PassThru] [-ThrottleLimit <Int32> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

Detailed Description

The Import-DnsServerTrustAnchor cmdlet imports a trust anchor from a specified file for a Domain Name System (DNS) server. If you specify a key set file, the cmdlet imports the DNS public key (DNSKEY) record set from the input key set file. This is the default parameter set.

If you specify a delegation signer (DS) set file, the cmdlet imports the DS record set from the input dsset file. If no trust anchor exists, the cmdlet creates one before it imports a trust anchor.

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 remote DNS server. You can specify The acceptable values for this parameter are: 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

-DSSetFile<String>

Specifies the path of a DS set file.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-KeySetFile<String>

Specifies the path of a key set file.

Aliases

none

Required?

true

Position?

2

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-PassThru

Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

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

-Confirm

Prompts you for confirmation before running the cmdlet.

Required?

false

Position?

named

Default Value

false

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Required?

false

Position?

named

Default Value

false

Accept Pipeline Input?

false

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#DnsServerTrustAnchor[]

Examples

Example 1: Import a trust anchor by using a key set file

This command imports a trust anchor for the zone named west.contoso.com by using a specified key set file.

PS C:\> Import-DnsServerTrustAnchor -KeySetFile "C:\Windows\System32\dns\keyset-west.contoso.com" -PassThru -Verbose

Example 2: Import a trust record by using a DS set file

This command imports a trust anchor (DS record) for the zone named west.contoso.com by using a specified DS set file.

PS C:\> Import-DnsServerTrustAnchor -DSSetFile "C:\Windows\System32\dns\dsset-west.contoso.com" -PassThru -Verbose

Add-DnsServerTrustAnchor

Get-DnsServerTrustAnchor

Remove-DnsServerTrustAnchor