20 lines
407 B
PowerShell
20 lines
407 B
PowerShell
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
#Requires -Modules VagrantMessages
|
|
|
|
param (
|
|
[parameter (Mandatory=$true)]
|
|
[string]$VmId,
|
|
[parameter (Mandatory=$true)]
|
|
[int]$VlanId
|
|
)
|
|
|
|
try {
|
|
$vm = Hyper-V\Get-VM -Id $VmId -ErrorAction "stop"
|
|
Hyper-V\Set-VMNetworkAdapterVlan $vm -Access -Vlanid $VlanId
|
|
}
|
|
catch {
|
|
Write-ErrorMessage "Failed to set VM's Vlan ID $_"
|
|
}
|