PowerShell Logo Small

Remove-NetTransportFilter



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

Removes transport filters.

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Remove-NetTransportFilter cmdlet removes transport filters.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkID=288401
Get-NetTCPSetting
Get-NetTransportFilter
New-NetTransportFilter

REMARKS

<

Examples


Example 1: Remove transport filters for a setting name

PS C:\>Remove-NetTransportFilter –SettingName Custom



This command removes all of the transport filters on the server that have the setting name of Custom.




Example 2: Remove transit filters for objects with a specified congestion window

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



This command uses the Get-NetTCPSetting cmdlet to get all of the NetTcpSetting objects that have an initial congestion window of 4 maximum segment size (MSS) units, and then
passes them to the current cmdlet by using the pipeline operator. The command removes transport filters for these settings.