PowerShell Logo Small

Enable-NetAdapterLso



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

Enables the large send offload (LSO) properties, such as LSOv4 and LSOv6, of the network adapter.

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Enable-NetAdapterLso cmdlet enables the state of the large send offload (LSO) settings, such as LSOv4 and LSOv6, on the network adapter. If neither LSOv4 or LSOv6 is
specified, then both LSOv4 and LSOv6 are enabled. LSO is a technology in which 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 separates 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. To enable just LSOv4 or LSOv6, run the Set-NetAdapterLso cmdlet.



<

RELATED LINKS

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

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Enable-NetAdapterLso –Name *



This example enables LSO for both IPv4 and IPv6 on all visible network adapters and restarts the network adapters.




EXAMPLE 2

PS C:\>Enable-NetAdapterLso –Name * -IPv4 -IPv6



This example enables LSO for both IPv4 and IPv6 on all visible network adapters by explicitly specifying the parameters and then restarts the network adapters.