douyuan 发表于 2008-8-7 14:34:11

RUN能设定运行时间咩?

我想用AU3调用“D:\检查”里的全部EXE。脚本如下:

$FilePath = "D:\检查"
$searchFile = FileFindFirstFile($FilePath & "\*.exe")
If $searchFile = -1 Then
    MsgBox(0, "错误", "无任何文件或文件夹与指定的搜索字符串匹配")
    Exit
EndIf

While 1
    $file = FileFindNextFile($searchFile)
    If @error Then ExitLoop
    RunWait($FilePath & "\" & $file,$FilePath)
WEnd

FileClose($searchFile)

在运行过程中有一些exe因配置不全而无法顺利润结束,请问一下能不能加点什么使用每个exe最多运行5分钟?
页: [1]
查看完整版本: RUN能设定运行时间咩?