Jump to content

Reexute the software


ricky
 Share

Recommended Posts

I fix my problem, my snippet below :

Func _SelfRestart($iDelay = 2, $commandline = "", $exit = 0)
    Local $sCmdFile, $path = @TempDir
    Local $batName = _UniqueFilename($path, "bat")

    $sCmdFile = '@echo off' & @CRLF & @CRLF _
            & 'ping -n ' & $iDelay & ' 127.0.0.1 > nul' & @CRLF _
            & 'start "" "' & @scriptdir & '\' & @ScriptName & '" ' & $commandline & @CRLF _
            & 'del ' & $batName
    FileWrite($batName, $sCmdFile)
    Run($batName, @TempDir, @SW_HIDE)
    if $exit then exit

    return 1
EndFunc
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...