PowerShell Logo Small

Remove-NetIPsecDospSetting



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

Deletes existing IPsec Dosp configurations.

SYNTAX


Remove-NetIPsecDospSetting [-All [<SwitchParameter>]] [-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-PassThru
[<SwitchParameter>]] [-ThrottleLimit <Int32>] [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]] [<CommonParameters>]
Remove-NetIPsecDospSetting [-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-PassThru [<SwitchParameter>]] [-ThrottleLimit <Int32>]
-InputObject <CimInstance[]> [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]] [<CommonParameters>]
Remove-NetIPsecDospSetting [-Name] <String[]> [-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-PassThru [<SwitchParameter>]]
[-ThrottleLimit <Int32>] [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]] [<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

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.