PowerShell Logo Small

Get-NetAdapterLso



This is the built-in help made by Microsoft for the command 'Get-NetAdapterLso', 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 the large send offload (LSO) properties of the network adapter.

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Get-NetAdapterLso cmdlet gets the state of large send offload (LSO) settings on the network adapter. LSO is a technology where the work of segmenting data into network
frames is performed by the network adapter instead of by the TCP/IP stack. With LSO, TCP/IP sends very large data packets down to the network adapter driver and the network
adapter hardware. The network adapter breaks up the data into smaller network-sized frames. This increases the speed of high-end send operations and decreases the processor
usage of the computer, because the work is performed on the network adapter.



<

RELATED LINKS

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

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Get-NetAdapterLso –Name MyAdapter



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




EXAMPLE 2

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



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




EXAMPLE 3

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



This example gets all of the network adapters with LSO enabled.