如何在 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
如何在 Windows 中找出已安装的操作系统的体系结构并仅获取值 32 或 64?
我wmic os get osarchitecture
得到:
OSArchitecture
64-bit
我只想要32
或者64
没有OSArchitecture
。
for /f "tokens=1 delims=-" %a in ('wmic os get osarchitecture ^| find "bit"') do @echo %a