15 lines
290 B
PowerShell
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,2] -join '\';
|
||
|
result = $check
|
||
|
}
|
||
|
|
||
|
Write-OutputMessage $(ConvertTo-Json $result)
|