PowerShell Logo Small

Set-NetAdapterIPsecOffload



This is the built-in help made by Microsoft for the command 'Set-NetAdapterIPsecOffload', 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 IPsec offload properties of the network adapter.

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Set-NetAdapterIPsecOffload cmdlet sets the IPsec offload properties of the network adapter. When IPsec offload is enabled the network adapter will perform the per packet
encryption operations which reduces processor utilization. The enabled state can be set by running the Enable-NetAdapterIPsecOffload or Disable-NetAdapterIPsecOffload cmdlet.



<

RELATED LINKS

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

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Set-NetAdapterIPsecOffload –Name MyAdapter -Enabled $True



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