Set-VMMigrationNetwork

Sets the subnet, subnet mask, and/or priority of a migration network.

Syntax

Set-VMMigrationNetwork
   [-ComputerName <String[]>]
   [-Credential <PSCredential[]>]
   [-Subnet] <String>
   [[-NewSubnet] <String>]
   [-NewPriority <UInt32>]
   [-Passthru]
   [-WhatIf]
   [-Confirm]
   [<CommonParameters>]
Set-VMMigrationNetwork
   [-CimSession <CimSession[]>]
   [-Subnet] <String>
   [[-NewSubnet] <String>]
   [-NewPriority <UInt32>]
   [-Passthru]
   [-WhatIf]
   [-Confirm]
   [<CommonParameters>]

Description

The Set-VMMigrationNetwork cmdlet sets the subnet, subnet mask, and/or priority of a migration network.

Examples

Example 1

PS C:\> Set-VMMigrationNetwork 192.168.10.1 192.168.10.3

This example changes an IPv4 address on a migration network.

Example 2

PS C:\> Set-VMMigrationNetwork 192.168.10.* 192.168.10.3

This example changes the IPv4 address on a migration network selected using a wildcard.

Example 3

PS C:\> Set-VMMigrationNetwork 2001:836c:6456:1c99::/64 -NewPriority 12

This example changes the priority of a migration network to 12.

Parameters

-CimSession

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[]
Position:Named
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-ComputerName

Specifies one or more Hyper-V hosts on which this cmdlet operates. 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[]
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Confirm

Prompts you for confirmation before running the cmdlet.

Type:SwitchParameter
Aliases:cf
Position:Named
Default value:False
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Credential

Specifies one or more user accounts that have permission to perform this action. The default is the current user.

Type:PSCredential[]
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-NewPriority

Specifies the new priority of the virtual machine migration network. Multiple networks can have the same priority.

Type:UInt32
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-NewSubnet

Specifies a string representing the new subnet value to be set on the migration network.

Type:String
Position:1
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Passthru

Specifies that a Microsoft.HyperV.PowerShell.MigrationNetwork is to be passed through to the pipeline representing the migration network to be configured.

Type:SwitchParameter
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Subnet

Specifies a string representing an IPv4 or IPv6 subnet mask which identifies the migration network whose properties are to be set. Wildcards are allowed.

Type:String
Position:0
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Type:SwitchParameter
Aliases:wi
Position:Named
Default value:False
Required:False
Accept pipeline input:False
Accept wildcard characters:False

Outputs

None

Default

Microsoft.HyperV.PowerShell.MigrationNetwork

If -PassThru is specified.