Other Parts Discussed in Thread: MSPBSL
Hi All,
I am using the BSL Scripter 3.2.1 in a .bat script. The problem I have is that when the script exit I need to be able to check if the programming was successful.
Right now I have
call BootViaTi\BSL-Scripter.exe BootViaTi\Tmp\script.txt
IF %errorlevel% NEQ 0 (
echo Error while executing TI script
echo Exiting...
exit /B 0
)
However, the BSL-Scripter will always return %errorlevel% = 1 no matter if the script was a success or not.
Any way to get the right exit command?