0 Pluspunkte 0 Minuspunkte
Wie erstelle ich eine DNS Master Zone auf einem Windows Domain Controller mit Powershell?
von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

Mit dem Cmdlet Add-DnsServerPrimaryZone legst du eine neue DNS Master Zone an.

Add-DnsServerPrimaryZone -Name "example.com" -ReplicationScope "Forest"

// oder
Add-DnsServerPrimaryZone -Name "example.com" -ZoneFile "C:\Windows\System32\dns\example.com.dns"
von