Job Definition Scripting Fields
Sample DOS batch file using the bexit command
rem ** This is an example script for Windows **
rem Display current date and time.
Date /T
time /T
rem Run an executable named script_test.
script_test
rem Return the status of the execution.
rem This example assumes user is testing against and wants to return level 99.
if 99 GEQ 1 (
bexit.exe 99
exit
)
bexit.exe 0 Sample DOS batch file using the bexit command
Last updated