If WinExists('KILLMYQUICK') Then WinKill('KILLMYQUICK', '')
If WinExists('THISISMYRUNNINGTITLE') Then Exit
AutoItWinSetTitle('THISISMYRUNNINGTITLE')
$T1 = TimerInit()
While 1
Sleep(1000)
$T2 = TimerDiff($T1)
TrayTip('',$T2,1)
If $T2 >= 60000 Then
AutoItWinSetTitle('KILLMYQUICK')
MsgBox(0,'', '转换程序', 2)
Run(@AutoItExe)
EndIf
WEnd