Skip to content
dscbot edited this page Jul 9, 2021 · 24 revisions

Welcome to the DnsServerDsc wiki

DnsServerDsc v3.0.1-preview0002

Here you will find all the information you need to make use of the DnsServerDsc DSC resources in the latest release. This includes details of the resources that are available, current capabilities, known issues, and information to help plan a DSC based implementation of DnsServerDsc.

Please leave comments, feature requests, and bug reports for this module in the issues section for this repository.

Deprecated resources

The documentation, examples, unit test, and integration tests have been removed for these deprecated resources. These resources will be removed in a future release.

DnsServerDsc

  • No deprecated resource at this time

xDnsServer

The entire module xDnsServer has been deprecated. Please move to DnsServerDsc.

Getting started

To get started either:

  • Install from the PowerShell Gallery using PowerShellGet by running the following command:
Install-Module -Name DnsServerDsc -Repository PSGallery
  • Download DnsServerDsc from the PowerShell Gallery and then unzip it to one of your PowerShell modules folders (such as $env:ProgramFiles\WindowsPowerShell\Modules).

To confirm installation, run the below command and ensure you see the DnsServerDsc DSC resources available:

Get-DscResource -Module DnsServerDsc

Prerequisites

The minimum Windows Management Framework (PowerShell) version required is 5.0 or higher, which ships with Windows 10 or Windows Server 2016, but can also be installed on Windows 7 SP1, Windows 8.1, Windows Server 2012, and Windows Server 2012 R2.

To use the DSC resources in the module DnsServerDsc the Microsoft DNS Server need to be installed on the node the resource is configured to target. The Microsoft DNS Server role can be installed in various ways, but one way is through DSC.

WindowsFeature InstallDNS
{
    Ensure = 'Present'
    Name   = 'DNS'
}

The DSC resources requires the DnsServer PowerShell module that is either installed by installing the Microsoft DNS Server role like above, or by just adding the DNS Server Tools part of Remote Server Administration Tools (RSAT) feature if the target node configures a remote Microsoft DNS Server.

WindowsFeature InstallDNSTools
{
    Ensure = 'Present'
    Name   = 'RSAT-DNS-Server'
}

Change log

A full list of changes in each version can be found in the change log.

Clone this wiki locally