Terminates the script.
Exit [return code]
return code | [optional] Integer that sets the script's return code. This code can be used by Windows or the DOS variable %ERRORLEVEL%. The default is 0. Scripts normally set an errorlevel of 0 if the script executed properly; error levels 1 and above typically indicate that the script did not execute properly. |
The parameter, if included, can be enclosed in parentheses. Thus, the following are equivalent: Exit, Exit 0, and Exit(0). However, Exit() is invalid.
The code can be retrieved in an OnAutoItExitRegister function by @exitCode.
ExitLoop, OnAutoItExitRegister
; very simple script
Exit