法一. if not "%ProgramFiles(x86)%"=="%SystemDrive%\Program Files (x86)" CALL A.BAT
if "%ProgramFiles(x86)%"=="%SystemDrive%\Program Files (x86)" CALL B.BAT
法二.
if not exist "%SystemRoot%\SysWow64" CALL A.BAT
if exist "%SystemRoot%\SysWow64" CALL B.BAT 作者: 807979023 时间: 2017-12-24 15:46