使用 Powershell 控制台,可以执行哪些命令来确定是否安装了 Windows Server 2008 的 32 位或 64 位版本?
答案1
或者尝试这个:
PS C:\Users\jeffh> $os=Get-WMIObject win32_operatingsystem
PS C:\Users\jeffh> $os.OSArchitecture
64-bit
发现于:http://msgoodies.blogspot.com/2008/05/is-this-powershell-session-32-bit-or-64.html
答案2
回显 %PROCESSOR_ARCHITECTURE%
答案3
就这样吧:
[System.Environment]::Is64BitOperatingSystem
答案4
使用 PowerShell:
(gwmi win32_computersystem).SystemType
来源:http://www.sysadmit.com/2015/10/windows-como-saber-si-es-de-32-o-64-bits.html