DSCResources/DSC_DnsServerZoneScope/en-US/about_DnsServerZoneScope.help.txt
.NAME
DnsServerZoneScope .DESCRIPTION The DnsServerZoneScope DSC resource manages the zone scope on an existing zone on the Domain Name System (DNS) server The name of the scope should adhere to the same conventions as the zone name. The scope name cannot be same as the zone name to which it is attached. ## Requirements - Target machine must be running Windows Server 2016 or later. .PARAMETER Name Key - String Specifies the name of the Zone Scope. .PARAMETER ZoneName Key - String Specify the existing DNS Zone to add a scope to. .PARAMETER Ensure Write - String Allowed values: Present, Absent Should this DNS Server Zone Scope be present or absent .PARAMETER ZoneFile Read - String Returns the zone scope filename. .EXAMPLE 1 This configuration will manage a DNS zone scope Configuration DnsServerZoneScope_config { Import-DscResource -ModuleName 'DnsServerDsc' DnsServerZoneScope 'ZoneScope1' { Name = 'contoso_NorthAmerica' ZoneName = 'contoso.com' Ensure = 'Present' } } |