Examples/Resources/NetAdapterRsc/2-DisableRscIPv4.ps1

<#
    .EXAMPLE
    This configuration disables RSC for IPv4 on the network adapter.
#>

Configuration Example
{
    param
    (
        [Parameter()]
        [System.String[]]
        $NodeName = 'localhost'
    )

    Import-DSCResource -ModuleName NetworkingDsc

    Node $NodeName
    {
        NetAdapterRsc DisableRscIPv4
        {
            Name = 'Ethernet'
            Protocol = 'IPv4'
            State = $false
        }
    }
}