NAME
Remove-NetTransportFilter
SYNOPSIS
Removes transport filters.SYNTAX
Remove-NetTransportFilter [-AssociatedTCPSetting
] [-CimSession ] [-DestinationPrefix
] [-LocalPortEnd ] [-LocalPortStart ] [-PassThru] [-Protocol ] [-RemotePortEnd
] [-RemotePortStart ] [-SettingName ] [-ThrottleLimit ] [-Confirm] [-WhatIf] [
] Remove-NetTransportFilter [-CimSession
[] [-PassThru] [-ThrottleLimit ] [-Confirm] [-WhatIf] ] DESCRIPTION
The Remove-NetTransportFilter cmdlet removes transport filters.
PARAMETERS
-AssociatedTCPSetting [
Specifies a NetTCPSetting object. The cmdlet removes transport filters associated with the setting that you] specify. To obtain a NetTCPSetting object, use the Get-NetTCPSetting cmdlet.
Required? false Position? named Default value none Accept pipeline input? True (ByValue) Accept wildcard characters? false-CimSession [
Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such] as the output of a New-CimSession or Get-CimSession cmdlet. The default is the current session on the local
computer. Required? false Position? named Default value none Accept pipeline input? false Accept wildcard characters? false-DestinationPrefix [
Specifies an array of destination prefixes of IP routes. The cmdlet removes transport filters that have the prefixes that you specify. A destination prefix consists of an IP address prefix and a prefix length, separated by a slash (/). Required? false Position? named Default value none Accept pipeline input? false Accept wildcard characters? false] -LocalPortEnd [
Specifies an array of upper bounds of ranges of local TCP ports. The cmdlet removes transport filters that have the upper bounds that you specify. Required? false Position? named Default value none Accept pipeline input? false Accept wildcard characters? false] -LocalPortStart [
Specifies an array of lower bounds of ranges of local TCP ports. The cmdlet removes transport filters that have the lower bounds that you specify. Required? false Position? named Default value none Accept pipeline input? false Accept wildcard characters? false] -PassThru [
Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. Required? false Position? named Default value none Accept pipeline input? false Accept wildcard characters? false] -Protocol [
Specifies an array of types of routing protocols. The cmdlet removes transport filters based on the protocols that you specify. The acceptable values for this parameter are:] -- Bbn
-- Bgp
-- Dhcp
-- Dvmrp
-- Egp
-- Eigrp
-- EsIs
-- Ggp
-- Hello
-- Icmp
-- Idpr
-- Igrp
-- IsIs
-- Local
-- NetMgmt
-- Ospf
-- Rip
-- Rpl
-- Other
Required? false Position? named Default value none Accept pipeline input? false Accept wildcard characters? false-RemotePortEnd [
Specifies an array of upper bounds of ranges of remote TCP ports. The cmdlet removes transport filters that have the upper bounds that you specify. Required? false Position? named Default value none Accept pipeline input? false Accept wildcard characters? false] -RemotePortStart [
Specifies an array of lower bounds of ranges of remote TCP ports. The cmdlet removes transport filters that have the lower bounds that you specify. Required? false Position? named Default value none Accept pipeline input? false Accept wildcard characters? false] -SettingName [
Specifies an array of setting names. The cmdlet removes transport filters that have the settings that you specify. The acceptable values for this parameter are:] -- Internet
-- Datacenter
-- Compat
-- Custom
Required? false Position? named Default value none Accept pipeline input? false Accept wildcard characters? false-ThrottleLimit [
Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of 0 is entered, then Windows PowerShellr calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. Required? false Position? named Default value none Accept pipeline input? false Accept wildcard characters? false] -Confirm [
Prompts you for confirmation before running the cmdlet.Prompts you for confirmation before running the cmdlet. Required? false Position? named Default value false Accept pipeline input? false Accept wildcard characters? false] -WhatIf [
Shows what would happen if the cmdlet runs. The cmdlet is not run.Shows what would happen if the cmdlet runs. The cmdlet is not run. Required? false Position? named Default value false Accept pipeline input? false Accept wildcard characters? false] This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216). INPUTS
Microsoft.Management.Infrastructure.CimInstance#root\StandardCimv2\MSFT_NetTransportFilter The Microsoft.Management.Infrastructure.CimInstance object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (#) provides the namespace and class name for the underlying WMI object.OUTPUTS
NoneExample 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.RELATED LINKS
Online Version: http://go.microsoft.com/fwlink/?LinkID=288401Get-NetTCPSetting
Get-NetTransportFilter
New-NetTransportFilter