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

8 lines
143 B
PowerShell
Raw Normal View History

2018-01-03 09:13:29 +01:00
Function Get-CPU() {
if ($env:PROCESSOR_ARCHITECTURE -eq "x86") {
Return "x86"
}
else {
Return "x64"
}
}