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

Version Path
vagrant-unbundled-1.8.1.2 plugins/providers/hyperv/scripts/set_network_vlan.ps1
vagrant-unbundled-1.8.1.1 plugins/providers/hyperv/scripts/set_network_vlan.ps1
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-272fb27e0536/plugins/providers/hyperv/scripts/set_network_vlan.ps1