description | external help file | Module Name | ms.date | online version | schema | title |
---|---|---|---|---|---|---|
Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. |
Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml |
Hyper-V |
12/20/2016 |
2.0.0 |
Add-VMSwitchTeamMember |
Adds members to a virtual switch team.
Add-VMSwitchTeamMember [-ComputerName <String[]>] [-VMSwitchName] <String[]> [-NetAdapterName <String[]>]
[-Passthru] [-CimSession <CimSession[]>] [-Credential <PSCredential[]>] [-WhatIf] [-Confirm]
[<CommonParameters>]
Add-VMSwitchTeamMember [-ComputerName <String[]>] [-VMSwitchName] <String[]>
[-NetAdapterInterfaceDescription <String[]>] [-Passthru] [-CimSession <CimSession[]>]
[-Credential <PSCredential[]>] [-WhatIf] [-Confirm] [<CommonParameters>]
Add-VMSwitchTeamMember [-ComputerName <String[]>] [-VMSwitch] <VMSwitch[]>
[-NetAdapterInterfaceDescription <String[]>] [-Passthru] [-CimSession <CimSession[]>]
[-Credential <PSCredential[]>] [-WhatIf] [-Confirm] [<CommonParameters>]
Add-VMSwitchTeamMember [-ComputerName <String[]>] [-VMSwitch] <VMSwitch[]> [-NetAdapterName <String[]>]
[-Passthru] [-CimSession <CimSession[]>] [-Credential <PSCredential[]>] [-WhatIf] [-Confirm]
[<CommonParameters>]
The Add-VMSwitchTeamMember cmdlet adds adapters as members to a virtual switch team.
PS C:\> $VMSwitch = Get-VMSwitch -Name "Switch03"
PS C:\> Add-VMSwitchTeamMember -VMSwitch $VMSwitch -NetAdapterName "Adapter01","Adapter04"
The first command gets the virtual switch team named Switch03, and then stores it in the $VMSwitch variable.
The second command adds the network adapters named Adapter01 and Adapter04 as team members to the switch team in $VMSwitch.
Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a New-CimSession or Get-CimSession cmdlet. The default is the current session on the local computer.
Type: CimSession[]
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies one or more Hyper-V hosts that runs this cmdlet. NetBIOS names, IP addresses, and fully qualified domain names are allowable. The default is the local computer. Use localhost or a dot (.) to specify the local computer explicitly.
Type: String[]
Parameter Sets: (All)
Aliases: PSComputerName
Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
Specifies one or more user accounts that have permission to perform this action. The default is the current user.
Type: PSCredential[]
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies an array of interface descriptions of the virtual network adapters that this cmdlet adds to the switch team.
Type: String[]
Parameter Sets: SwitchName_NetAdapterInterfaceDescription, SwitchObject_NetAdapterInterfaceDescription
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies an array of names of virtual network adapters that this cmdlet adds to the switch team.
Type: String[]
Parameter Sets: SwitchName_NetAdapterName, SwitchObject_NetAdapterName
Aliases: InterfaceAlias
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Indicates that this cmdlet returns the Microsoft.HyperV.PowerShell.VMSwitch object that it modifies.
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies an array of virtual switches that this cmdlet configures. To obtain a VMSwitch object, use the Get-VMSwitch cmdlet.
Type: VMSwitch[]
Parameter Sets: SwitchObject_NetAdapterInterfaceDescription, SwitchObject_NetAdapterName
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
Specifies an array of names of virtual switches that this cmdlet configures.
Type: String[]
Parameter Sets: SwitchName_NetAdapterName, SwitchName_NetAdapterInterfaceDescription
Aliases: SwitchName
Required: True
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Shows what would happen if the cmdlet runs. The cmdlet is not run.
Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
This cmdlet returns a VMSwitch object, if you specify the Passthru parameter.