19 lines
468 B
PowerShell
19 lines
468 B
PowerShell
|
param (
|
||
|
[string]$VmId = $(throw "-VmId is required."),
|
||
|
[int]$VlanId = $(throw "-VlanId ")
|
||
|
)
|
||
|
|
||
|
# Include the following modules
|
||
|
$presentDir = Split-Path -parent $PSCommandPath
|
||
|
$modules = @()
|
||
|
$modules += $presentDir + "\utils\write_messages.ps1"
|
||
|
forEach ($module in $modules) { . $module }
|
||
|
|
||
|
try {
|
||
|
$vm = Get-VM -Id $VmId -ErrorAction "stop"
|
||
|
Set-VMNetworkAdapterVlan $vm -Access -Vlanid $VlanId
|
||
|
}
|
||
|
catch {
|
||
|
Write-Error-Message "Failed to set VM's Vlan ID $_"
|
||
|
}
|