After struggling quite a while, I now not only have an example project for Distributed Testing, I also have a correct DOS BATCH script to run my test suite from the command line.
For anyone still in the struggling state to get TestComplete Command Line Parameters to work, my sharing mood offers you this for educational purposes:
@ECHO OFF
rem The Suite name could be a command line parameter for this script
set smartbearSuite=Remote
set exportLog=.\%smartbearSuite%.mht
set smartbearExe="C:\Program Files (x86)\SmartBear\TestComplete 9\Bin\TestComplete.exe"
set smartbearParameters=/r /e /exportlog:"%exportLog%"
set smartbearSuitePath=.\%smartbearSuite%\%smartbearSuite%.pjs
rem Removing old log files is is necessary otherwise running
rem the test will fail because of the exisiting log file
if exist %exportLog% (
echo Remove latest log
del -d %exportLog%
echo.
)
echo Perform SmartBear test suite %smartbearSuite%
%smartbearExe% %smartbearParameters% %smartbearSuitePath%
echo ErrorLevel=%ERRORLEVEL%
rem Errorlevel 0 is success!
rem Errorlevel 2 is 'there was an error during testing'.
rem Error code 1000 means there is already another smartbear exe running.
echo.
pause