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

17 lines
203 B
PowerShell

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