#NoTrayIcon
#include <Process.au3>
While 1
$Config = IniReadSection("映像名称.ini","映像名称")
If @error Then
MsgBox(16, "错误", "啊哦, 读取INI文件失败.")
ExitLoop
Else
For $i = 1 To $Config[0][0]
If ProcessExists($Config[$i][1]) Then
ProcessClose($Config[$i][1])
EndIf
Sleep(100)
Next
EndIf
WEnd