vagrant/plugins/providers/hyperv/scripts/check_hyperv_access.ps1

15 lines
290 B
PowerShell

#Requires -Modules VagrantMessages, VagrantVM
param(
[parameter (Mandatory=$true)]
[string] $Path
)
$check = Check-VagrantHyperVAccess -Path $Path
$result = @{
root_dir = ($Path -split '\\')[0,1] -join '\';
result = $check
}
Write-OutputMessage $(ConvertTo-Json $result)