fusionpbx-install.sh/windows/resources/get-cpu.ps1

8 lines
143 B
PowerShell

Function Get-CPU() {
if ($env:PROCESSOR_ARCHITECTURE -eq "x86") {
Return "x86"
}
else {
Return "x64"
}
}