Jump to content

limit the program (Script) running time


 Share

Recommended Posts

Greeting,

I have a script as below: the program looking for "c:\autoexec.bat", if it find it then show the message, the program finish. if not then wait for 1 second check again, until it show up the quit.

The question is if can not get the file "c:\autoexec.bat", I want this script (will compile to EXE file). stop and quit after 5 minutes, How can I do that?

Thanks

usera

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

While 1

sleep(1000)

If FileExists("C:\autoexec.bat") then ExitLoop

WEnd

MsgBox(4096, "C:\autoexec.bat File", "Exists")

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

Link to comment
Share on other sites

$iCase = 0
$timer = TimerInit()
While 1
    Sleep(1000)
    If FileExists("C:\autoexec.bat") Then
        $iCase = 1
        ExitLoop
    endif
    if TimerDiff($timer) > 1000 * 60 * 5 then 
        $iCase = 2
        ExitLoop
    endif
WEnd

Switch $iCase
    Case 1
        MsgBox(4096, "C:\autoexec.bat File", "Exists")
    Case 2
        MsgBox(4096, "C:\autoexec.bat File", "Not found in 5 minutes...")
EndSwitch

Link to comment
Share on other sites

Thank you very very much!

$iCase = 0
$timer = TimerInit()
While 1
    Sleep(1000)
    If FileExists("C:\autoexec.bat") Then
        $iCase = 1
        ExitLoop
    endif
    if TimerDiff($timer) > 1000 * 60 * 5 then 
        $iCase = 2
        ExitLoop
    endif
WEnd

Switch $iCase
    Case 1
        MsgBox(4096, "C:\autoexec.bat File", "Exists")
    Case 2
        MsgBox(4096, "C:\autoexec.bat File", "Not found in 5 minutes...")
EndSwitch

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...