PowerShell Logo Small

Set-NetAdapterEncapsulatedPacketTaskOffload



This is the built-in help made by Microsoft for the command 'Set-NetAdapterEncapsulatedPacketTaskOffload', 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 encapsulated packet task offload property of the network adapter.

SYNTAX


Set-NetAdapterEncapsulatedPacketTaskOffload [-Name] <String[]> [-AsJob] [-CimSession <CimSession[]>] [-EncapsulatedPacketTaskOffloadEnabled <Boolean>] [-IncludeHidden]
[-NoRestart] [-PassThru] [-ThrottleLimit <Int32>] [-Confirm] [-WhatIf] [<CommonParameters>]
Set-NetAdapterEncapsulatedPacketTaskOffload [-AsJob] [-CimSession <CimSession[]>] [-EncapsulatedPacketTaskOffloadEnabled <Boolean>] [-IncludeHidden] [-NoRestart] [-PassThru]
[-ThrottleLimit <Int32>] -InterfaceDescription <String[]> [-Confirm] [-WhatIf] [<CommonParameters>]
Set-NetAdapterEncapsulatedPacketTaskOffload [-AsJob] [-CimSession <CimSession[]>] [-EncapsulatedPacketTaskOffloadEnabled <Boolean>] [-NoRestart] [-PassThru] [-ThrottleLimit
<Int32>] -InputObject <CimInstance[]> [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Set-NetAdapterEncapsulatedPacketTaskOffload cmdlet sets the encapsulated packet task offload property of the network adapter. Encapsulated task offload allows the
network adapter to perform offload operations such as large send offload (LSO) and virtual machine queue (VMQ) on the inner header for encapsulated packets. The
Enable-NetAdapterEncapsulatedPacketTaskoffload and Disable-NetAdapterEncapsulatedPacketTaskOffload cmdlets can also be used to manage encapsulated packet task offload.



<

RELATED LINKS

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

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Set-NetAdapterEncapsulatedPacketTaskOffload –Name MyAdapter -EncapsulatedPacketTaskOffloadEnabled $true



This example enables encapsulated packet task offload on the network adapter named MyAdapter and restarts the network adapter. Note: The
Enable-NetAdapterEncapsulatedPacketTaskOffload cmdlet is the preferred cmdlet to perform this operation.




EXAMPLE 2

PS C:\>Set-NetAdapterEncapsulatedPacketTaskOffload –Name MyAdapter -EncapsulatedPacketTaskOffloadEnabled $false



This example disables encapsulated packet task offload on the network adapter named MyAdapter and restarts the network adapter. Note: The
Disable-NetAdapterEncapsulatedPacketTaskOffload cmdlet is the preferred cmdlet to perform this operation.