I just would like to know if is possible make "one starting point" of TC on USB stick so based on system it will run proper version of TC. In 32bit systems it run 32bit version and on 64bit it will run 64bit version. Is it possible to do this?
My only one solution which come to my mind just now is some cmd script, which run it properly:
Code: Select all
if "%PROCESSOR_ARCHITECTURE%" == "AMD64" (
call TOTALCM64.exe
) else (
call TOTALCMD.EXE
)
pause
//Yes, seems, that if batch job is called from 32bit application, 32bit environment is chosen even if 64bit system is used. Most of portable apps like PortableApps or LiberKey are 32bit.
