PowerShell Logo Small

Get-SmbClientNetworkInterface



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

Retrieves the network interfaces used by the Server Message Block (SMB) client.

SYNTAX


Get-SmbClientNetworkInterface [-AsJob] [-CimSession <CimSession[]>] [-ThrottleLimit <Int32>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-SmbClientNetworkInterface cmdlets retrieves the network interfaces used by the Server Message Block (SMB) client.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=289510
Get-SmbServerNetworkInterface

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Get-SmbClientNetworkInterface
Interface Index RSS Capable RDMA Capable Speed IpAddresses Friendly Name
--------------- ----------- ------------ ----- ----------- -------------
12 True True 32 Gbps {192.168.101.13} RDMA1
15 True True 32 Gbps {192.168.102.13} RDMA2
17 False False 0 bps {fe80::5efe:192.... isatap.{EF722F0D...
18 False False 0 bps {fe80::5efe:192.... isatap.{BD3C4A04...
19 False False 0 bps {fe80::5efe:192.... isatap.{597B0A73...
20 False False 0 bps {fe80::6065:ddbf... Local Area Conne...
32 False False 10 Gbps {172.30.182.10} ExternalVirtual
16 False False 3 Gbps {2001:4898:0:fff... isatap.corp.cont...
14 False False 1 Gbps {192.168.100.13} Internal



This example retrieves the network interfaces used by the SMB client.




EXAMPLE 2

PS C:\>Get-SmbClientNetworkInterface | Where-Object –Property LinkSpeed -Gt 10GB
Interface Index RSS Capable RDMA Capable Speed IpAddresses Friendly Name
--------------- ----------- ------------ ----- ----------- -------------
12 True True 32 Gbps {192.168.101.13} RDMA1
15 True True 32 Gbps {192.168.102.13} RDMA2



This example retrieves the network interfaces used by the SMB client that match the link speed of 10 gigabits or more.




EXAMPLE 3

PS C:\>Get-SmbClientNetworkInterface | Where-Object –Property LinkSpeed -Gt 10GB | Select-Object –Property *
FriendlyName : RDMA1
InterfaceIndex : 12
IpAddresses : {192.168.101.13}
LinkSpeed : 32000000000
RdmaCapable : True
RssCapable : True
PSComputerName :
CimClass : ROOT/Microsoft/Windows/SMB:MSFT_SmbClientNetworkInterface
CimInstanceProperties : {FriendlyName, InterfaceIndex, IpAddresses, LinkSpeed...}
CimSystemProperties : Microsoft.Management.Infrastructure.CimSystemProperties

FriendlyName : RDMA2
InterfaceIndex : 15
IpAddresses : {192.168.102.13}
LinkSpeed : 32000000000
RdmaCapable : True
RssCapable : True
PSComputerName :
CimClass : ROOT/Microsoft/Windows/SMB:MSFT_SmbClientNetworkInterface
CimInstanceProperties : {FriendlyName, InterfaceIndex, IpAddresses, LinkSpeed...}
CimSystemProperties : Microsoft.Management.Infrastructure.CimSystemProperties



This example displays all of the information retrieved from the network interfaces used by the SMB client that match the link speed of 10 gigabits or more.