This procedure describes how to run the _exit utility.
To run the utility:
_exit [<exitCode>]
The <exitCode> variable is any whole integer number n Default: 0
The program exits with %errorlevel% = <exitCode>.
EXAMPLE: Specify _exit 0 in a script to cause the job to end with %errorlevel% 0.
ctmcreate -what command -cmdline "_exit 0"
Specify _exit 1 in a script to cause the job to end with %errorlevel% 1.
ctmcreate -what command -cmdline "_exit 1"
Parent Topic |