PowerShell Logo Small

Disable-NetAdapterLso



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

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

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Disable-NetAdapterLso cmdlet disables 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 are Disabled. 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 breaks up the data into
smaller network-sized frames. This increases the speed of large packet send operations and decreases the processor usage of the computer, because the work is performed on
the network adapter. To disable individual LSOv4 or LSOv6, run the Set-NetAdapterLso cmdlet.



<

RELATED LINKS

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

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Disable-NetAdapterLso –Name MyAdapter -IPv6



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