PowerShell Logo Small

Set-NetAdapterRsc



This is the built-in help made by Microsoft for the command 'Set-NetAdapterRsc', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Sets the enabled state of receive segment coalescing (RSC).

SYNTAX


Set-NetAdapterRsc [-Name] <String[]> [-AsJob] [-CimSession <CimSession[]>] [-IncludeHidden] [-IPv4Enabled <Boolean>] [-IPv6Enabled <Boolean>] [-NoRestart] [-PassThru]
[-ThrottleLimit <Int32>] [-Confirm] [-WhatIf] [<CommonParameters>]
Set-NetAdapterRsc [-AsJob] [-CimSession <CimSession[]>] [-IPv4Enabled <Boolean>] [-IPv6Enabled <Boolean>] [-NoRestart] [-PassThru] [-ThrottleLimit <Int32>] -InputObject
<CimInstance[]> [-Confirm] [-WhatIf] [<CommonParameters>]
Set-NetAdapterRsc [-AsJob] [-CimSession <CimSession[]>] [-IncludeHidden] [-IPv4Enabled <Boolean>] [-IPv6Enabled <Boolean>] [-NoRestart] [-PassThru] [-ThrottleLimit <Int32>]
-InterfaceDescription <String[]> [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Set-NetAdapterRsc cmdlet sets the enabled state of receive segment coalescing (RSC). RSC takes multiple packets received within the same interrupt period and combines
the packets into a single large package to be processed by the network stack. This reduces the processing overhead for incoming packets and reduces the number of processor
cycles that are used, leading to better scalability.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=287428
Disable-NetAdapterRsc
Enable-NetAdapterRsc
Get-NetAdapterRsc

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Set-NetAdapterRsc –Name MyAdapter -IPv4Enabled $True -IPv6Enabled $True



This example enables RSC for IPv4 and IPv6 traffic on the network adapter named MyAdapter and restarts the network adapter. Note: The Enable-NetAdapterRsc cmdlet is the
preferred cmdlet to perform this operation.




EXAMPLE 2

PS C:\>Set-NetAdapterRsc –Name MyAdapter -IPv4Enabled $True -IPv6Enabled $False



This example enables RSC for IPv4 traffic and disables RSC for IPv6 traffic on the network adapter named MyAdapter and restarts the network adapter.