帮我写一个自动检测x_86电脑 cpu 位数的bat脚本
时间: 2023-04-01 21:04:41 浏览: 168
可以的,以下是一个自动检测x86电脑CPU位数的bat脚本:
@echo off
set "PROCESSOR_ARCHITECTURE="
if "%PROCESSOR_ARCHITECTURE%"=="x86" (
echo 32-bit CPU
) else (
echo 64-bit CPU
)
pause
希望对您有所帮助。
相关问题
编写一个bat脚本,可以打印出x_86电脑cpu 位数,内存等信息
你好,以下是回答:
@echo off
echo CPU位数:
wmic cpu get AddressWidth
echo 内存信息:
wmic memorychip get capacity, memorytype, speed, partnumber
希望能对你有所帮助!
阅读全文