echo off REM REM Launches the RciTest application REM REM Sends an rci command to an rci server and outputs the reply. REM REM Parameters: REM -ip The ip address of the RCI server REM -command The name of the file containing the rci command to send. If this REM parameter is not specified then user must type command in at prompt. REM -result The name of the file that the command results are sent to. If this REM parameter is not specified then output goes to the console. REM REM REM use following line to make this batch file generic REM java -cp applet.jar com.digi.config.ui.RciTest %1=%2 %3=%4 %5=%6 REM REM otherwise, fill in parameters below as you like and use in batch mode SETLOCAL java -cp applet.jar com.digi.config.ui.RciTest -ip=10.20.1.11 -command=testcmd.xml -result=testresult.xml ENDLOCAL