PowerShell Logo Small

Enable-NetAdapterChecksumOffload



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

Enables checksum offloads on the network adapter.

SYNTAX


Enable-NetAdapterChecksumOffload [-Name] <String[]> [-AsJob] [-CimSession <CimSession[]>] [-IncludeHidden] [-IpIPv4] [-NoRestart] [-PassThru] [-TcpIPv4] [-TcpIPv6]
[-ThrottleLimit <Int32>] [-UdpIPv4] [-UdpIPv6] [-Confirm] [-WhatIf] [<CommonParameters>]
Enable-NetAdapterChecksumOffload [-AsJob] [-CimSession <CimSession[]>] [-IncludeHidden] [-IpIPv4] [-NoRestart] [-PassThru] [-TcpIPv4] [-TcpIPv6] [-ThrottleLimit <Int32>]
[-UdpIPv4] [-UdpIPv6] -InterfaceDescription <String[]> [-Confirm] [-WhatIf] [<CommonParameters>]
Enable-NetAdapterChecksumOffload [-AsJob] [-CimSession <CimSession[]>] [-IpIPv4] [-NoRestart] [-PassThru] [-TcpIPv4] [-TcpIPv6] [-ThrottleLimit <Int32>] [-UdpIPv4]
[-UdpIPv6] -InputObject <CimInstance[]> [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Enable-NetAdapterChecksumOffload cmdlet enables checksum offloads on the network adapter. When specified IPv4, TCPv4, or TCPv6 can be enabled in the transmit, receive,
or both directions. By default all checksums are enabled in both directions. 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 enables the various checksum
offload settings, including IPv4, TCPv4, TCPv6, UDPv4, and UDPv6. Checksum offloading is also required for other stateless offloads to work including receive side scaling
(RSS), receive segment coalescing (RSC), and large send offload (LSO).



<

RELATED LINKS

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

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Enable-NetAdapterChecksumOffload –Name * -TcpIPv4 -UdpIPv4 -IpIPv4



This example enables all IPv4 checksum offloads on all visible network adapters and restarts the network adapters.




EXAMPLE 2

PS C:\>Enable-NetAdapterChecksumOffload –Name *



This example enables all checksum offloads on all visible network adapters and restarts the network adapters.