PowerShell Logo Small

Get-NetLbfoTeamMember



This is the built-in help made by Microsoft for the command 'Get-NetLbfoTeamMember', 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 network adapters that are members of a NIC team, as specified by the input parameters.

SYNTAX


Get-NetLbfoTeamMember [[-Name] <String[]>] [[-Team] <String[]>] [-AsJob] [-CimSession <CimSession[]>] [-ThrottleLimit <Int32>] [<CommonParameters>]
Get-NetLbfoTeamMember [-AsJob] [-CimSession <CimSession[]>] [-TeamOfTheMember <CimInstance>] [-ThrottleLimit <Int32>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-NetLbfoTeamMember cmdlet retrieves the list of all network adapters (team members) of all NIC teams. You can also use Get-NetLbfoTeamMember to retrieve a list of
network adapters for the specified NIC team, and then use that information as input to the other cmdlets.



<

RELATED LINKS

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

REMARKS

<

Examples


Example 1: Get a list of team members

PS C:\> Get-NetLbfoTeamMember -Team Team1



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




Example 2: Get a list of all team members

PS C:\> Get-NetLbfoTeamMember



This command retrieves a list of all team members of all NIC teams on the system.




Example 3: Get a list of all team members via associations

PS C:\> Get-NetLbfoTeam –Name Team1 | Get-NetLbfoTeamMember

Or
PS C:\> $teamObj = Get-NetLbfoTeam –Name Team1
PS C:\> Get-NetLbfoTeamMember –TeamOfTheMember $teamObj



This command retrieves a list of all team members belonging to team named Team1.