mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-21 08:55:35 -05:00
9 lines
239 B
PowerShell
9 lines
239 B
PowerShell
#Requires -Modules VagrantMessages
|
|
|
|
# Windows version 10 and up have support for binary format
|
|
$check = [System.Environment]::OSVersion.Version.Major -ge 10
|
|
$result = @{
|
|
result = $check
|
|
}
|
|
|
|
Write-OutputMessage $(ConvertTo-Json $result)
|