Wb-FreeKill 0 Posted May 17, 2005 How do i restart my exe file as fast as possible.. Share this post Link to post Share on other sites
Wb-FreeKill 0 Posted May 17, 2005 any ideas.. close exe and run again... Share this post Link to post Share on other sites
MSLx Fanboy 0 Posted May 17, 2005 Is the exe a script that's been compiled? Is so, wrap it in a a while 1 loop. Else, if it is just a normal application do While 1 RunWait(@ProgramFilesDir & "\someapp\someprogram.exe") WEnd which will loop again once the process that is launched is closed... Writing AutoIt scripts since _DateAdd("d", -2, _NowCalcDate()) Share this post Link to post Share on other sites
Wb-FreeKill 0 Posted May 17, 2005 Is the exe a script that's been compiled? Is so, wrap it in a a while 1 loop.Else, if it is just a normal application doWhile 1RunWait(@ProgramFilesDir & "\someapp\someprogram.exe")WEndwhich will loop again once the process that is launched is closed...<{POST_SNAPBACK}>its a compiled script, i can't put it in a while, the program is completly closiing??? so i guess i have to get a batch or commandline to execute it.. right? Share this post Link to post Share on other sites
MHz 80 Posted May 17, 2005 Run(@ScriptFullPath) Exit Share this post Link to post Share on other sites
jftuga 1 Posted May 17, 2005 How do i restart my exe file as fast as possible..<{POST_SNAPBACK}>Run( @ScriptFullPath )-John Admin_Popup, show computer info or launch shellRemote Manager, facilitates connecting to RDP / VNCProc_Watch, reprioritize cpu intensive processesUDF: _ini_to_dict, transforms ini file entries into variablesUDF: monitor_resolutions, returns resolutions of multiple monitorsReport Computer Problem, for your IT help deskProfile Fixer, fixes a 'missing' AD user profile Share this post Link to post Share on other sites