Kavex 11 Posted September 20, 2017 I looked over the wiki really quick but nothing popped out at me, is there a function for opening external files? I'd like to write a script that opens a program and starts filling it out Quote Share this post Link to post Share on other sites
Kavex 11 Posted September 25, 2017 Nvm found the correct section https://wiki.scar-divi.com/Category:File_Functions 1 Quote Share this post Link to post Share on other sites
Wanted 12 Posted October 1, 2017 On 9/25/2017 at 2:13 AM, Kavex said: Nvm found the correct section https://wiki.scar-divi.com/Category:File_Functions Which function did you use? Quote Share this post Link to post Share on other sites
wundertüte 6 Posted November 2, 2017 i always write a autoitscript which opens .exe and put the autoitscript in my taskbar and click on it... Quote Share this post Link to post Share on other sites
wundertüte 6 Posted November 2, 2017 simple autoit v3 script that kills firefox process and restart it #include <MsgBoxConstants.au3> Example() Func Example() ; Run Notepad ;Run("firefox.exe") _RunDos("start taskkill /F /IM firefox.exe") Sleep(2500) Run("firefox.exe"); ;$hWndff=WinWait("[CLASS:firefox]",5) $list = ProcessList("firefox.exe") for $i = 1 to 9999 $list = ProcessList("firefox.exe","") $hWndff=WinClose("firefox.exe") EndFunc Quote Share this post Link to post Share on other sites
wundertüte 6 Posted November 2, 2017 59 minutes ago, wundertüte said: simple autoit v3 script that kills firefox process and restart it #include <MsgBoxConstants.au3> Example() Func Example() ; Run Notepad ;Run("firefox.exe") _RunDos("start taskkill /F /IM firefox.exe") Sleep(2500) Run("firefox.exe"); ;$hWndff=WinWait("[CLASS:firefox]",5) $list = ProcessList("firefox.exe") for $i = 1 to 9999 $list = ProcessList("firefox.exe","") $hWndff=WinClose("firefox.exe") EndFunc DOES ANYONE KNOW HOW TO CONTACT FREDDY ? Quote Share this post Link to post Share on other sites
Wanted 12 Posted November 4, 2017 On 11/2/2017 at 4:49 PM, wundertüte said: DOES ANYONE KNOW HOW TO CONTACT FREDDY ? Why is it that you need to contact him? Quote Share this post Link to post Share on other sites
FHannes 1 Posted November 4, 2017 https://github.com/SCAR-Divi/ShellUtils Load the ShellUtils plugin and use Run() or RunEx(). 1 Quote Share this post Link to post Share on other sites