mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-17 09:43:11 -05:00
8 lines
217 B
PowerShell
8 lines
217 B
PowerShell
#Requires -Modules VagrantMessages
|
|
|
|
$check = $(-Not (-Not (Get-Command "Hyper-V\Get-VMSwitch" -ErrorAction SilentlyContinue)))
|
|
$result = @{
|
|
result = $check
|
|
}
|
|
|
|
Write-OutputMessage $(ConvertTo-Json $result)
|