PowerShell Logo Small

Get-NetAdapterChecksumOffload



This is the built-in help made by Microsoft for the command 'Get-NetAdapterChecksumOffload', in PowerShell version 4 - as retrieved from Windows version 'Microsoft Windows 8.1 Enterprise' 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 various checksum offload settings from network adapters that support these checksum offloads.

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Get-NetAdapterChecksumOffload cmdlet gets the various checksum offload settings. Physical network adapters have various checksum offloads in which the checksum ca
lculations occur in the network adapter and not in the main processor. This reduces processor utilization and can increase network throughput. This cmdlet gets the va
rious checksum offload settings, including IPv4, TCPv4, TCPv6, UDPv4, and UDPv6.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=287397
Disable-NetAdapterChecksumOffload
Enable-NetAdapterChecksumOffload
Set-NetAdapterChecksumOffload

REMARKS

<

Examples


EXAMPLE 1

PS C:\> Get-NetAdapterChecksumOffload –Name MyAdapter



This example gets the state of checksum offload properties of the network adapter named MyAdapter.




EXAMPLE 2

PS C:\> $networkAdapterCO1 = Get-NetAdapterChecksumOffload –Name MyAdapter
PS C:\> $networkAdapterCO1.ChecksumOffloadHardwareCapabilities



This example displays the checksum offload hardware capabilities of the network adapter named MyAdapter.