PowerShell Logo Small

Disable-NetAdapterRsc



This is the built-in help made by Microsoft for the command 'Disable-NetAdapterRsc', in PowerShell version 3 - as retrieved from Windows version 'Microsoft Windows Server 2012 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

Disables receive segment coalescing (RSC).

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Disable-NetAdapterRsc cmdlet disables receive segment coalescing (RSC). If neither IPv4 or IPv6 is specified, then both are disabled. RSC
takes multiple packets that were 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

Enable-NetAdapterRsc
Get-NetAdapterRsc
Set-NetAdapterRsc

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Disable-NetAdapterRsc –Name MyAdapter -IPv6



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