Examples/Resources/WeakHostSend/1-ConfigureWeakHostSend.ps1

<#
    .EXAMPLE
    Disabling tbe weak host send setting for the network adapter with alias 'Ethernet'.
#>

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

    Import-DscResource -Module NetworkingDsc

    Node $NodeName
    {
        WeakHostSend DisableWeakHostSending
        {
            State          = 'Disabled'
            InterfaceAlias = 'Ethernet'
            AddressFamily  = 'IPv4'
        }
    }
}