vcpkg/scripts/getProgramFilesPlatformBitness.ps1

11 lines
123 B
PowerShell
Raw Normal View History

[CmdletBinding()]
param(
)
if (Test-Path env:ProgramW6432)
{
return ${env:ProgramW6432}
}
return ${env:PROGRAMFILES}