Examples/Resources/WinsServerAddress/1-WinsServerAddress_Config.ps1

<#PSScriptInfo
.VERSION 1.0.0
.GUID 9783741d-7f08-409d-8c93-d2e16a76e1ee
.AUTHOR Microsoft Corporation
.COMPANYNAME Microsoft Corporation
.COPYRIGHT
.TAGS DSCConfiguration
.LICENSEURI https://github.com/PowerShell/NetworkingDsc/blob/master/LICENSE
.PROJECTURI https://github.com/PowerShell/NetworkingDsc
.ICONURI
.EXTERNALMODULEDEPENDENCIES
.REQUIREDSCRIPTS
.EXTERNALSCRIPTDEPENDENCIES
.RELEASENOTES First version.
.PRIVATEDATA 2016-Datacenter,2016-Datacenter-Server-Core
#>


#Requires -module NetworkingDsc

<#
    .DESCRIPTION
    Configure WINS Server for the Ethernet adapter.
#>

Configuration WinsServerAddress_Config
{
    Import-DscResource -Module NetworkingDsc

    Node localhost
    {
        WinsServerAddress WinsServerAddress
        {
            Address        = '192.168.0.1'
            InterfaceAlias = 'Ethernet'
        }
    }
}