PowerShell Logo Small

Get-NetLbfoTeamNic



This is the built-in help made by Microsoft for the command 'Get-NetLbfoTeamNic', 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 a list of team interfaces.

SYNTAX


Get-NetLbfoTeamNic [[-Name] <String[]>] [[-Team] <String[]>] [-AsJob] [-CimSession <CimSession[]>] [-ThrottleLimit <Int32>] [<CommonParameters>]
Get-NetLbfoTeamNic [-AsJob] [-CimSession <CimSession[]>] [-TeamOfTheTeamNic <CimInstance>] [-ThrottleLimit <Int32>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-NetLbfoTeamNic cmdlet retrieves a list of team interfaces as specified by the input parameters.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?linkid=294338
Add-NetLbfoTeamNic
Remove-NetLbfoTeamNic
Set-NetLbfoTeamNic

REMARKS

<

Examples


Example 1: Get a list of team interfaces associated with Team1

PS C:\>Get-NetLbfoTeamNic -Team Team1

Or
PS C:\> $teamObj = Get-NetLbfoTeam –Name 'Team1'
PS C:\> Get-NetLbfoTeamNic –TeamOfTheTeamNic $teamObj



This command retrieves a list of team interfaces for the specified team named Team1.




Example 2: Get a list of team interfaces by name

PS C:\> Get-NetLbfoTeamNic –Name *VLAN* -Team T*



This command retrieves a list of team interfaces whose name contains “VLAN” in any NIC team whose name starts with T.