14 lines
381 B
PowerShell
14 lines
381 B
PowerShell
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
#Requires -Modules VagrantMessages
|
|
# This will have a SwitchType property. As far as I know the values are:
|
|
#
|
|
# 0 - Private
|
|
# 1 - Internal
|
|
#
|
|
|
|
$Switches = @(Hyper-V\Get-VMSwitch `
|
|
| Select-Object Name,SwitchType,NetAdapterInterfaceDescription,Id)
|
|
Write-OutputMessage $(ConvertTo-JSON $Switches)
|