Keyword Reference

首页  后退  前进

Exit

终止并退出运行的脚本.

 

Exit [返回码]

参数

返回码

[可选] 指定脚本退出时返回的整数代码.

此代码可以被 Windows 或 DOS 变量 %ERRORLEVEL% 使用. 默认为 0.

通常脚本正常退出会设置 errorlevel 为 0; 如果值为 1 或以上, 说明脚本没有正常退出.

备注

如果包含参数, 可将参数放在括号中. 下列语句是等效的:

Exit, Exit 0, 与 Exit(0). 但 Exit() 无效.

 

返回代码可以使用 OnAutoItExitRegister() 函数的 @EXITCODE 获取.

相关

ExitLoop, OnAutoItExitRegister

函数示例

示例 1

; very simple script
Exit

示例 2

; Terminate script if no command-line arguments
If $CmdLine[0] = 0 Then Exit (1)

----------------------------------------