mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-03 20:39:27 -05:00
12 lines
308 B
PowerShell
12 lines
308 B
PowerShell
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
#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)
|