PowerShell Logo Small

Get-NetAdapterRsc



This is the built-in help made by Microsoft for the command 'Get-NetAdapterRsc', in PowerShell version 4 - as retrieved from Windows version 'Microsoft Windows 8.1 Enterprise' 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

Gets network adapters that support receive segment coalescing (RSC).

SYNTAX


Get-NetAdapterRsc [[-Name] <String[]>] [-AsJob] [-CimSession <CimSession[]>] [-IncludeHidden] [-IPv4FailureReason <FailureReason[]>] [-IPv4OperationalState <Boolean[]
>] [-IPv6FailureReason <FailureReason[]>] [-IPv6OperationalState <Boolean[]>] [-ThrottleLimit <Int32>] [<CommonParameters>]
Get-NetAdapterRsc [-AsJob] [-CimSession <CimSession[]>] [-IncludeHidden] [-IPv4FailureReason <FailureReason[]>] [-IPv4OperationalState <Boolean[]>] [-IPv6FailureReaso
n <FailureReason[]>] [-IPv6OperationalState <Boolean[]>] [-ThrottleLimit <Int32>] -InterfaceDescription <String[]> [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-NetAdapterRsc cmdelt gets network adapters that support 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=287405
Where-Object
Disable-NetAdapterRsc
Enable-NetAdapterRsc
Set-NetAdapterRsc
Set-NetOffloadGlobalSetting

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Get-NetAdapterRsc –Name MyAdapter



This example gets the RSC properties of the network adapter named MyAdapter.




EXAMPLE 2

PS C:\>Get-NetAdapterRsc –Name *



This example gets all of the RSC capable network adapters.




EXAMPLE 3

PS C:\>Get-NetAdapterRsc –Name * | Where-Object -FilterScript { $_.Enabled }



This example gets all of the RSC capable network adapters.