dsc/ext/PsGallery/xNetworking.3.2.0.0/Examples/Resources/xDnsConnectionSuffix/1-AddSpecificSuffix.ps1

<#
    .EXAMPLE
    This configuration will set a DNS connection-specific suffix on a network interface that is identified by its alias.
#>

Configuration Example
{
    param
    (
        [string[]] $NodeName = 'localhost'
    )

    Import-DscResource -Module xNetworking
    Node $NodeName
    {
        xDnsConnectionSuffix DnsConnectionSuffix
        {
            InterfaceAlias           = 'Ethernet'
            ConnectionSpecificSuffix = 'contoso.com'
        }
    }
}