PowerShell Logo Small

Add-NetLbfoTeamMember



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

Adds a new member (network adapter) to a specified NIC team.

SYNTAX


Add-NetLbfoTeamMember [-Name] <WildcardPattern> [-Team] <String> [[-AdministrativeMode] <AdminModes>] [-AsJob] [-CimSession <CimSession[]>] [-ThrottleLimit <Int32>]
[-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Add-NetLbfoTeamMember cmdlet adds a new network adapter as a member to the specified team. You can use the AdministrativeMode parameter to specify the initial role of
the new team member.



<

RELATED LINKS

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

REMARKS

<

Examples


Example 1: Add a new team member

PS C:\> Add-NetLbfoTeamMember -Name NIC1 -Team Team1



This command adds a new member named NIC1 to the specified team named Team1.




Example 2: Add a new team member with initial status

PS C:\> Add-NetLbfoTeamMember -Name NIC2 -Team Team2 -AdministrativeMode Standby



This command adds a new member named NIC2 to the specified team named Team2 with the initial status Standby.




Example 3: Add new team members using wildcard pattern

PS C:\> Add-NetLbfoTeamMember –Name NIC* -Team Team1



This command adds new members whose name starts with NIC to the specified team named Team1.