Different PATH environment variable for 32bit and 64bit Windows - is it possible?

Is it possible to have whole or part of PATH environment variable specific to the type of running process's image (32bit/64bit)? When I run some app from within 64bit cmd.exe I would like to have it pick the 64bit version of OpenSSL library whereas when I run some app from within 32bit cmd.exe I would like to have it pick the 32bit version of OpenSSL library.

FOLLOW UP
where.exe does not find OpenSSL libs when %ProgramFiles% variable is used in the PATH environment variable


Make %ProgramFiles% to %ProgramFiles(x86)% env variable switching to work for you:

Place folders with x32 and x64 versions of OpenSSL library into appropriate %programfiles% and %ProgramFiles(x86)% directories and in the PATH environment variable, use a reference to these folders via the %programfiles% variable.

This way, when you are running in x32-bit environment, your PATH entry %programfiles%/OpenSSL/ will automatically get resolved to %ProgramFiles(x86)%/OpenSSL/ on a disk.


The answer (checked as right) provided by romka is simple and elegant, but does unfortunately not work (at least on Windows 7 and Windows 8 64 bits, I didn't push my test further).

The problem comes from the fact that the system %PATH% variable does not always expand other env variable : it works with %SYSTEMDRIVE% for example, but unfortunately not for %PROGRAMFILES%. Wikipedia suggests that this behavior comes from the level of indirection (%SYSTEMDRIVE% does not refer to a third env variable).

The only solution I found is to use the File System Redirector magic and the directories System32/SysWoW64, as suggested in the comments.

To avoid the direct deployment of DLLs in the Windows directory, which is usually hard to maintain, one can deploy instead a softlink to a custom directory (works on Windows Vista and later versions of Windows) :

  • method found here : http://realfiction.net/go/153
  • how to make a softlink here : http://www.howtogeek.com/howto/windows-vista/using-symlinks-in-windows-vista/

By the way, sorry for not commenting directly on the relevant posts : currently not enough reputation on my account to do this.


Yes it is absolutely possible. Simply write a three .bat files. The first one should look like this:

@echo off
if "%1" == "" goto x86
if not "%2" == "" goto usage

if /i %1 == x86 goto x86
if /i %1 == ia64 goto ia64
goto usage

:x86
if not exist "%~dp0bin\x86.bat" goto missing
call "%~dp0bin\x86.bat"
goto :eof

:ia64
if not exist "%~dp0bin\ia64.bat" goto missing
call "%~dp0bin\ia64.bat"
goto :eof

:usage
echo Error in script usage. The correct usage is:
echo %0 [option]
echo where [option] is: x86 ^| ia64
echo:
echo For example:
echo %0 x86
goto :eof

:missing
echo The specified configuration type is missing. The tools for the
echo configuration might not be installed.
goto :eof

The second and the third .bat file are basically the same, except they differ in their name. The first will be called x86.bat the second ia64.bat and they are placed in a folder called bin which is above the the first bat file. You will have this:

PATH\first.bat
PATH\bin\x86.bat
PATH\bin\ia64.bat

The content of the second and third .bat file should look like this:

@set PATH=THE PATH YOU WANT

You could create a link to first .bat file which will have the following settings:

Target: %comspec% /k "PATH\first.bat" OPTION | Where OPTION is x86 or ia64

Start in: PATH | Where PATH is the PATH to your first.bat

The script is the simplified script Microsoft uses to start the right command line for their Visual Studio environment. You could simply expand this scripts to N environments. By adding more .bat files for different environments and by editing the first.bat with more options and goto statements. I hope it is self explaining.

And i hope Microsoft does not sue me for using their script.

EDIT:

Ah i think i misunderstood you a bit. For the 32bit cmd line the link should be created as:

Target: %windir%\SysWoW64\cmd.exe "PATH\first.bat" x86

EDIT2:

Try something like:

if "%ProgramFiles%" == "%ProgramFiles(x86)%" goto x64_PATH
if "%ProgramFiles%" == "%ProgramW6432%" goto x86_PATH

:x64_PATH
@set PATH=YOUR 64 bit PATH
SOME_PATH\your64BitApp.exe
goto :eof

:x86_PATH
@set PATH=YOUR 32bit PATH
SOME_PATH\your32BitApp.exe
goto :eof