如何在 Windows 中找出已安装的操作系统的体系结构并仅获取值 32 或 64?

如何在 Windows 中找出已安装的操作系统的体系结构并仅获取值 32 或 64?

如何在 Windows 中找出已安装的操作系统的体系结构并仅获取值 32 或 64?

wmic os get osarchitecture得到:

OSArchitecture
64-bit

我只想要32或者64没有OSArchitecture

答案1

for /f "tokens=1 delims=-" %a in ('wmic os get osarchitecture ^| find "bit"') do @echo %a

相关内容