PowerShell Logo Small

Get-NetAdapterIPsecOffload



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

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Get-NetAdapterIPsecOffload cmdlet gets the IPsec offload properties of an IPsec offload capable network adapter. When IPsec Offload is enabled the network adapter
will perform the per packet encryption operations which reduces processor utilization.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=287400
Format-List
Where-Object
Disable-NetAdapterIPsecOffload
Enable-NetAdapterIPsecOffload
Set-NetAdapterIPsecOffload

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Get-NetAdapterIPsecOffload -Name MyAdapter



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




EXAMPLE 2

PS C:\>Get-NetAdapterIPsecOffload –Name MyAdapter | Format-List -Property *



This example displays all of the IPsec offload properties of the network adapter named MyAdapter.




EXAMPLE 3

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



This example gets all of the IPsec offload capable network adapters with IPsec offload enabled.