2018-05-24 16:57:55 +00:00
|
|
|
#Requires -Modules VagrantMessages
|
|
|
|
|
2015-03-30 14:37:29 +00:00
|
|
|
param (
|
2018-05-24 16:57:55 +00:00
|
|
|
[parameter (Mandatory=$true)]
|
|
|
|
[string]$VmId,
|
|
|
|
[parameter (Mandatory=$true)]
|
|
|
|
[int]$VlanId
|
|
|
|
)
|
2015-03-30 14:37:29 +00:00
|
|
|
|
|
|
|
# Include the following modules
|
|
|
|
$presentDir = Split-Path -parent $PSCommandPath
|
|
|
|
$modules = @()
|
|
|
|
$modules += $presentDir + "\utils\write_messages.ps1"
|
|
|
|
forEach ($module in $modules) { . $module }
|
|
|
|
|
|
|
|
try {
|
2017-08-08 17:00:29 +00:00
|
|
|
$vm = Hyper-V\Get-VM -Id $VmId -ErrorAction "stop"
|
|
|
|
Hyper-V\Set-VMNetworkAdapterVlan $vm -Access -Vlanid $VlanId
|
2015-03-30 14:37:29 +00:00
|
|
|
}
|
|
|
|
catch {
|
2018-06-12 22:32:29 +00:00
|
|
|
Write-ErrorMessage "Failed to set VM's Vlan ID $_"
|
2015-03-30 14:37:29 +00:00
|
|
|
}
|