PowerShell Logo Small

Get-NetAdapterRss



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

Gets receive side scaling (RSS) properties of the network adapter.

SYNTAX


Get-NetAdapterRss [[-Name] <String[]>] [-AsJob] [-CimSession <CimSession[]>] [-IncludeHidden] [-ThrottleLimit <Int32>] [<CommonParameters>]
Get-NetAdapterRss [-AsJob] [-CimSession <CimSession[]>] [-IncludeHidden] [-ThrottleLimit <Int32>] -InterfaceDescription <String[]> [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-NetAdapterRss cmdlet gets receive side scaling (RSS) properties of the network adapters that support RSS. RSS is a scalability technology that distributes the
receive network traffic among multiple processors by hashing the header of the incoming packet and using an indirection table. Without RSS in Windows Server® 2012 and later,
network traffic is received on the first processor which can quickly reach full utilization limiting receive network throughput. Various properties can be configured to
optimize the performance of RSS.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=287406
Format-List
Where-Object
Disable-NetAdapterRss
Enable-NetAdapterRss
Set-NetAdapterRss

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Get-NetAdapterRss –Name *



This example gets all of the RSS capable network adapters.




EXAMPLE 2

PS C:\>Get-NetAdapterRss –Name MyAdapter



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




EXAMPLE 3

PS C:\>Get-NetAdapterRss –Name MyAdapter | Format-List -Property *



This example displays all of the RSS properties of the network adapter named MyAdapter.




EXAMPLE 4

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



This example gets all of the RSS capable network adapters with RSS enabled.