PowerShell Logo Small

Get-NetAdapterChecksumOffload



This is the built-in help made by Microsoft for the command 'Get-NetAdapterChecksumOffload', in PowerShell version 3 - as retrieved from Windows version 'Microsoft Windows Server 2012 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 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 calculations occur in the network adapter and not in the main processor. This reduces processor utilization and can
increase network throughput. This cmdlet gets the various checksum offload settings, including IPv4, TCPv4, TCPv6, UDPv4, and UDPv6.



<

RELATED LINKS

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.