en-US/about_xNetAdapterRsc.help.txt
.NAME
xNetAdapterRsc # Description This resource is used to enable or disable RSC (Recv Segment Coalescing) for specific protocols on a network adapter. .PARAMETER Name Key - String Specifies the Name of network adapter. .PARAMETER Protocol Required - String Allowed values: IPv4, IPv6, All Specifies which protocol to make changes to. .PARAMETER State Required - Boolean Specifies whether RSC should be enabled or disabled. .PARAMETER StateIPv4 Read - String Returns the current state of RSC for IPv4 .PARAMETER StateIPv6 Read - String Returns the current state of RSC for IPv6 .EXAMPLE This configuration disables RSC for IPv6 on the network adapter. Configuration Example { param ( [Parameter()] [System.String[]] $NodeName = 'localhost' ) Import-DSCResource -ModuleName xNetworking Node $NodeName { xNetAdapterRsc DisableRscIPv6 { Name = 'Ethernet' Protocol = 'IPv6' State = $false } } } .EXAMPLE This configuration disables RSC for IPv4 on the network adapter. Configuration Example { param ( [Parameter()] [System.String[]] $NodeName = 'localhost' ) Import-DSCResource -ModuleName xNetworking Node $NodeName { xNetAdapterRsc DisableRscIPv4 { Name = 'Ethernet' Protocol = 'IPv4' State = $false } } } .EXAMPLE This configuration disables RSC on the network adapter. Configuration Example { param ( [Parameter()] [System.String[]] $NodeName = 'localhost' ) Import-DSCResource -ModuleName xNetworking Node $NodeName { xNetAdapterRsc DisableRscIPv4 { Name = 'Ethernet' Protocol = 'All' State = $false } } } |