Sha256: a691e718c6996317bd7b4da216d8e8caad4eebad0afd177d3822743a94279dc4
Contents?: true
Size: 468 Bytes
Versions: 23
Compression:
Stored size: 468 Bytes
Contents
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 $_" }
Version data entries
23 entries across 23 versions & 4 rubygems