Add-VMSwitch
Adds a virtual switch to an Ethernet resource pool.
Syntax
Add-VMSwitch
[-ComputerName <String[]>]
[-Name] <String[]>
[-ResourcePoolName] <String[]>
[<CommonParameters>]
Add-VMSwitch
[-VMSwitch] <VMSwitch[]>
[-ResourcePoolName] <String[]>
[<CommonParameters>]
Description
The Add-VMSwitch cmdlet adds a virtual switch to an Ethernet resource pool.
Examples
Example 1
PS C:\>Add-VMSwitch -Name Test -ResourcePoolName "Engineering Department"
Adds virtual switch Test to Ethernet resource pool Engineering Department.
Example 2
PS C:\>Get-VMSwitch -Name Test | Add-VMSwitch -ResourcePoolName "Engineering Department"
Adds virtual switch Test to Ethernet resource pool Engineering Department.
Parameters
-ComputerName
Specifies an array of Hyper-V hosts. The cmdlet adds the virtual switch on the Hyper-V hosts that you specify.
Type: | String[] |
Position: | Named |
Default value: | . |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Name
Specifies the name of the virtual switch to be added.
Type: | String[] |
Aliases: | SwitchName |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-ResourcePoolName
Specifies the name of the resource pool to which the virtual switch is to be added.
Type: | String[] |
Position: | 1 |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-VMSwitch
Specifies the virtual switch to be added to the Ethernet resource pool.
Type: | VMSwitch[] |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Outputs
None by default; Microsoft.HyperV.PowerShell.VMNetwork if -PassThru is present.