PowerShell Logo Small

Remove-NetTransportFilter



This is the built-in help made by Microsoft for the command 'Remove-NetTransportFilter', 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 a transport filter.

SYNTAX


Remove-NetTransportFilter [-AsJob [<SwitchParameter>]] [-AssociatedTCPSetting <CimInstance>] [-CimSession <CimSession[]>] [-DestinationPrefix
<String[]>] [-LocalPortEnd <UInt16[]>] [-LocalPortStart <UInt16[]>] [-PassThru [<SwitchParameter>]] [-Protocol <Protocol[]>] [-RemotePortEnd
<UInt16[]>] [-RemotePortStart <UInt16[]>] [-SettingName <String[]>] [-ThrottleLimit <Int32>] [-Confirm [<SwitchParameter>]] [-WhatIf
[<SwitchParameter>]] [<CommonParameters>]
Remove-NetTransportFilter [-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-PassThru [<SwitchParameter>]] [-ThrottleLimit <Int32>]
-InputObject <CimInstance[]> [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Remove-NetTransportFilter cmdlet deletes a transport filter. A transport filter determines how TCP settings from NetTcpSetting are applied
to an IP address prefix or a TCP port range.



<

RELATED LINKS

Get-NetTCPSetting
Get-NetTransportFilter
New-NetTransportFilter

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Remove-NetTransportFilter –SettingName Custom



This example removes all of the transport filters on the server that are associated with the custom NetTcpSetting.




EXAMPLE 2

PS C:\>Get-NetTCPSetting –InitialCongestionWindowMss 4 | Remove-NetTransportFilter



This example gets all of the NetTcpSettings that have an initial congestion window of 4 MSS and removes their associated transport filters.