PowerShell Logo Small

Remove-NetIPsecDospSetting



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

Deletes existing IPsec Dosp configurations.

SYNTAX


Remove-NetIPsecDospSetting [-All] [-AsJob] [-CimSession <CimSession[]>] [-PassThru] [-ThrottleLimit <Int32>] [-Confirm] [-WhatIf] [<CommonParameters>]
Remove-NetIPsecDospSetting [-AsJob] [-CimSession <CimSession[]>] [-PassThru] [-ThrottleLimit <Int32>] -InputObject <CimInstance[]> [-Confirm] [-WhatIf] [<CommonParameters>]
Remove-NetIPsecDospSetting [-Name] <String[]> [-AsJob] [-CimSession <CimSession[]>] [-PassThru] [-ThrottleLimit <Int32>] [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Remove-NetIPsecDospSetting cmdlet deletes IPsec Dosp configurations retrieved using the Name parameter or by piping a network IPsec Dosp setting configuration.


The network traffic being sent or received on the specified interfaces of the deleted network IPsec Dosp setting configuration is no longer affected by the IPsec DoS
protection feature.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=288130
Get-NetIPsecDospSetting
New-NetIPsecDospSetting
Set-NetIPsecDospSetting

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Remove-NetIPsecDospSetting –Name "Dosp-IKEv2-CorpNet-PubNet"



This example deletes a network IPsec Dosp setting configuration.




EXAMPLE 2

PS C:\>$nipDospSetting = Get-NetIPsecDospSetting



PS C:\>Remove-NetIPsecDospSetting –InputObject $nipDospSetting


This cmdlet can be run using only the pipeline.
PS C:\>Get-NetIPsecDospSetting | Remove-NetIPsecDospSetting



This example removes all of the network IPsec Dosp setting configurations on the computer.