PowerShell Logo Small

Get-NetAdapterEncapsulatedPacketTaskOffload



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

Gets the network adapters that support encapsulated task offload.

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Get-NetAdapterEncapsulatedPacketTaskOffload cmdlet gets the network adapters that support encapsulated task offload. 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.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=287398
Where-Object
Disable-NetAdapterEncapsulatedPacketTaskOffload
Enable-NetAdapterEncapsulatedPacketTaskOffload
Set-NetAdapterEncapsulatedPacketTaskOffload

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Get-NetAdapterEncapsulatedPacketTaskOffload –Name *



This example gets all of the encapsulated packet task offload capable network adapters.




EXAMPLE 2

PS C:\>Get-NetAdapterEncapsulatedPacketTaskOffload –Name MyAdapter



This example gets the encapsulated packet task offload properties for the network adapter named MyAdapter.




EXAMPLE 3

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



This example gets the encapsulated packet task offload adapters with encapsulated packet task offload enabled.