vcpkg/scripts/getProgramFilesPlatformBitness.ps1
2017-02-24 14:30:56 -08:00

17 lines
208 B
PowerShell

[CmdletBinding()]
param(
)
$out = ${env:ProgramW6432}
if ($out -eq $null)
{
$out = ${env:PROGRAMFILES}
}
if ($out -eq $null)
{
throw "Could not find [Program Files Platform Bitness]"
}
return $out