对于在 64 位 Windows 上执行的 32 位应用程序,Windows 将环境变量ProgramFiles设置为环境变量ProgramFiles(x86)的值,正如 Microsoft 在 MSDN 文章WOW64 Implementation Details中所解释的那样。
WinRAR SFX 存档显然是使用 x86 SFX 模块创建的。SFX 存档也可以使用 x64 SFX 模块创建,但是这个 SFX 存档只能在 Windows x64 上执行。
如果在创建存档时使用 x86 SFX 模块,则批处理文件cmd.exe
在 32 位环境中以 32 位执行。
所以更好的是调整批处理代码并在 64 位 Windows 上添加 32 位执行检测。
@ECHO OFF
CD /D "%~dp0"
GOTO DisableLocal
:DisableLocal
SET "ServerPath=%ProgramFiles%\Server\"
IF EXIST "%ServerPath%" GOTO Server
REM Is batch file processed in 32-bit environment on 64-bit Windows?
REM This is not the case if there is no variable ProgramFiles(x86)
REM because variable ProgramFiles(x86) exists only on 64-bit Windows.
IF "%ProgramFiles(x86)%" == "" GOTO Config
REM On 64-bit Windows 7 and later 64-bit Windows there is the variable
REM ProgramW6432 with folder path of 64-bit program files folder.
IF NOT "%ProgramW6432%" == "" (
SET "ServerPath=%ProgramW6432%\Server\"
IF EXIST "%ProgramW6432%\Server\" GOTO Server
)
REM For Windows x64 prior Windows 7 x64 and Windows Server 2008 R2 x64
REM get 64-bit program files folder from 32-bit program files folder
REM with removing the last 6 characters from folder path, i.e. " (x86)".
SET "ServerPath=%ProgramFiles:~0,-6%\Server\"
IF EXIST "%ServerPath%" GOTO Server
:Config
ECHO Need configuration.
GOTO :EOF
:Server
ECHO Server path is: %ServerPath%