我需要能够在x86和x64机器上运行此批处理以检查程序是否已正确安装。
我们有一个安装在x86标准程序文件目录中的应用程序,当安装在x64中时,它安装在x86程序文件目录中。
目前报道 false
,显示在x86和x64上运行时安装应用程序的回显以及未安装应用程序的回显。
if /i "%processor_architecture%"=="x86" GOTO X86DC
if /i "%processor_architecture%"=="X64" GOTO X64DC
:X86DC
if exist "C:\Program Files\installeddir\app.exe" ( echo ***App is Installed Successfully*** )
if not exist "C:\Program Files\installeddir\app.exe" ( echo ***App is not installed *** )
:X64DC
if exist "C:\Program Files(x86)\installeddir\app.exe" ( echo ***App is Installed Successfully*** )
if not exist "C:\Program Files(x86)\installeddir\app.exe" ( echo ***App is not installed*** )
:end
标签,已经有了:eof
内置的。