PowerShell Logo Small

Enable-NetAdapterRsc



This is the built-in help made by Microsoft for the command 'Enable-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

Enables receive segment coalescing (RSC).

SYNTAX


Enable-NetAdapterRsc [-Name] <String[]> [-AsJob] [-CimSession <CimSession[]>] [-IncludeHidden] [-IPv4] [-IPv6] [-NoRestart] [-PassThru] [-ThrottleLimit <Int32>] [-Confirm]
[-WhatIf] [<CommonParameters>]
Enable-NetAdapterRsc [-AsJob] [-CimSession <CimSession[]>] [-IncludeHidden] [-IPv4] [-IPv6] [-NoRestart] [-PassThru] [-ThrottleLimit <Int32>] -InterfaceDescription
<String[]> [-Confirm] [-WhatIf] [<CommonParameters>]
Enable-NetAdapterRsc [-AsJob] [-CimSession <CimSession[]>] [-IPv4] [-IPv6] [-NoRestart] [-PassThru] [-ThrottleLimit <Int32>] -InputObject <CimInstance[]> [-Confirm]
[-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Enable-NetAdapterRsc cmdlet enables receive segment coalescing (RSC). If the IPv4 or IPv6 is specified, then both are enabled. 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=287390
Disable-NetAdapterRsc
Get-NetAdapterRsc
Set-NetAdapterRsc

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Enable-NetAdapterRsc –Name MyAdapter -IPv4



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




EXAMPLE 2

PS C:\>Enable-NetAdapterRsc –Name MyAdapter



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




EXAMPLE 3

PS C:\>Enable-NetAdapterRsc –Name *



This example enables RSC for IPv4 and IPv6 and all RSC capable network adapters and restarts the network adapters.