Set-VMMigrationNetwork

Set-VMMigrationNetwork

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

Syntax

Parameter Set: Default
Set-VMMigrationNetwork [-Subnet] <String> [[-NewSubnet] <String> ] [-ComputerName <String[]> ] [-NewPriority <UInt32> ] [-Passthru] [-Confirm] [-WhatIf] [ <CommonParameters>]

Detailed Description

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

Parameters

-ComputerName<String[]>

Specifies one or more Hyper-V hosts on which migration network properties are to be set. 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.

Aliases

none

Required?

false

Position?

named

Default Value

.

Accept Pipeline Input?

true (ByPropertyName)

Accept Wildcard Characters?

false

-NewPriority<UInt32>

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

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-NewSubnet<String>

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

Aliases

none

Required?

false

Position?

2

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Passthru

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

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Subnet<String>

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

Aliases

none

Required?

true

Position?

1

Default Value

none

Accept Pipeline Input?

true (ByValue, ByPropertyName)

Accept Wildcard Characters?

true

-Confirm

Prompts you for confirmation before running the cmdlet.

Required?

false

Position?

named

Default Value

false

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-WhatIf

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

Required?

false

Position?

named

Default Value

false

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see    about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Inputs

The input type is the type of the objects that you can pipe to the cmdlet.

Outputs

The output type is the type of the objects that the cmdlet emits.

  • None by default; Microsoft.Virtualization.Powershell.MigrationNetwork if –PassThru is specified.

Examples

Example 1

This example changes an IPv4 address on a migration network.

PS C:\> Set-VMMigrationNetwork 192.168.10.1 192.168.10.3

Example 2

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

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

Example 3

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

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