DSCResources/MSFT_xDnsServerPrimaryZone/en-US/about_xDnsServerPrimaryZone.help.txt
.NAME
xDnsServerPrimaryZone .DESCRIPTION The xDnsServerPrimaryZone DSC resource manages a standalone file-backed Primary zone on a given Domain Name System (DNS) server. .PARAMETER Name Key - String DNS Server primary zone name .PARAMETER ZoneFile Write - String DNS Server primary zone file .PARAMETER DynamicUpdate Write - String Allowed values: None, NonSecureAndSecure Dynamic zone update option .PARAMETER Ensure Write - String Allowed values: Present, Absent Whether the DNS zone should be available or removed .EXAMPLE 1 Configuration xDnsServerPrimaryZone_config { Import-DscResource -ModuleName 'xDnsServer' Node localhost { xDnsServerPrimaryZone 'AddPrimaryZone' { Ensure = 'Present' Name = 'demo.contoso.com' ZoneFile = 'demo.contoso.com.dns' DynamicUpdate = 'NonSecureAndSecure' } } } |