Windows のcmd(バッチファイル)で 32bit 64bit 判別

● Windows のcmd(バッチファイル)で 32bit 64bit 判別

chcp 65001
echo off

echo;
if "%PROCESSOR_ARCHITECTURE%" EQU "x86" (
    echo ●●● お使いのWindowsは32bitです ●●●
) else (
    echo ●●● お使いのWindowsは64bitです ●●●
)
echo;

pause
REM cmd /k
No.2043
09/21 18:33

edit