Using a Bat File in Windows to Run the Command Line Launcher
Following is an example of using a bat file in Windows to run the Command Line Launcher.
@echo off
java –jar calcmgrCmdLine.jar http://myBox:19000 admin password Sample Basic myRule var1=\"Jan\" var2=1000 var3="Budget->\"001\"->FY10"
IF %ERRORLEVEL%==0 goto success
echo there is error
goto end
:success
echo success
:end