函数参考


ProcessClose

终止某个进程.

ProcessClose ( "进程")

参数

进程 要终止的进程的名称或 PID(进程标识符).

返回值

成功: 返回 1.
失败: 返回 0 并设置 @error 到:
1 = 打开进程失败
2 = AdjustTokenPrivileges 失败
3 = 终止进程失败
4 = 不能验证进程是否存在

注意/说明

进程名是指可执行文件的名称(无需给出完整路径),例如:"notepad.exe" 或 "winword.exe"

若有多个进程的名称相同则 PID 最高的进程将被结束(并不是以最近启动的进程为准).

PID 是标识进程的唯一的数值.PID 可通过 ProcessExists 或 Run 命令的返回值获得.

每隔 250 毫秒左右进程将被检测一次.

相关

ProcessExists, ProcessWait, ProcessWaitClose, Run, WinClose, ProcessList, RunAs, Shutdown, WinKill

示例/演示


ProcessClose("notepad.exe")

Local $PID = ProcessExists("notepad.exe") ; Will return the PID or 0 if the process isn't found.
If $PID Then ProcessClose($PID)