PowerShell Logo Small

Set-NetAdapterLso



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

Sets the large send offload (LSO) properties of the network adapter.

SYNTAX


Set-NetAdapterLso [-Name] <String[]> [-AsJob] [-CimSession <CimSession[]>] [-IncludeHidden] [-IPv4Enabled <Boolean>] [-IPv6Enabled <Boolean>] [-NoRestart] [-PassThru]
[-ThrottleLimit <Int32>] [-V1IPv4Enabled <Boolean>] [-Confirm] [-WhatIf] [<CommonParameters>]
Set-NetAdapterLso [-AsJob] [-CimSession <CimSession[]>] [-IncludeHidden] [-IPv4Enabled <Boolean>] [-IPv6Enabled <Boolean>] [-NoRestart] [-PassThru] [-ThrottleLimit <Int32>]
[-V1IPv4Enabled <Boolean>] -InterfaceDescription <String[]> [-Confirm] [-WhatIf] [<CommonParameters>]
Set-NetAdapterLso [-AsJob] [-CimSession <CimSession[]>] [-IPv4Enabled <Boolean>] [-IPv6Enabled <Boolean>] [-NoRestart] [-PassThru] [-ThrottleLimit <Int32>] [-V1IPv4Enabled
<Boolean>] -InputObject <CimInstance[]> [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Set-NetAdapterLso cmdlet manages the large send offload property which can improve send side performance by having the network adapter distribute a large send request
into smaller sizes that can be sent out by the network adapter. Without this setting Windows Server® 2012 and later would have to perform this work. The offload reduces the
load on the processor, so that the processor can to do more application level work. If only setting the enabled state of LSO, then use the Enable-NetAdapterLso or
Disable-NetAdapterLso cmdlets.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=287424
Disable-NetAdapterLso
Enable-NetAdapterLso
Get-NetAdapterLso

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Set-NetAdapterLso –Name MyAdapter -IPv4Enabled $True -IPv6Enabled $False



This example enables LSO for IPv4 and disables LSO for IPv6 on the network adapter named MyAdapter.