PowerShell Logo Small

Get-NetTransportFilter



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

Gets transport filters.

SYNTAX


Get-NetTransportFilter [-AsJob] [-AssociatedTCPSetting <CimInstance>] [-CimSession <CimSession[]>] [-DestinationPrefix <String[]>] [-LocalPortEnd <UInt16[]>]
[-LocalPortStart <UInt16[]>] [-Protocol <Protocol[]>] [-RemotePortEnd <UInt16[]>] [-RemotePortStart <UInt16[]>] [-SettingName <String[]>] [-ThrottleLimit <Int32>]
[<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-NetTransportFilter cmdlet gets transport filters. A transport filter specifies the TCP settings, as a NetTcpSetting object, to apply to an IP address prefix or a TCP
port range. Use the cmdlet without parameters to get all transport filters for the computer.


Use the New-NetTransportFilter cmdlet to create transport filters, and use the Remove-NetTransportFilter cmdlet to remove filters.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkID=288391
Get-NetUDPSetting
New-NetTransportFilter
Remove-NetTransportFilter
Set-NetTCPSetting
Set-NetUDPSetting

REMARKS

<

Examples


Example 1: Get all transport filters

PS C:\>Get-NetTransportFilter



This command gets all the transport filters on the computer.




Example 2: Get transport filters that apply specified settings

PS C:\>Get-NetTransportFilter –SettingName Internet



This command gets transport filters that apply Internet settings.