mem94043 Posted September 8, 2014 Share Posted September 8, 2014 Is it possible to convert an AutoIt EXE file back into a script?? I have a few AutoIt EXEs that a colleague wrote for me a couple years back. I recently lost the scripts from my hard drive and I no longer have his contact info. These programs perform tasks based on time of day and I now need to 'tweak' the time settings on them. If it is not possibe to convert an EXE back to a script, then could someone point me to some good code samples/examples that would show how a script can close and re-open a specific progam at the same time every day. THANKS! Mike Link to comment Share on other sites More sharing options...
Bert Posted September 8, 2014 Share Posted September 8, 2014 (edited) Is it possible to convert an AutoIt EXE file back into a script??THANKS!MikeNo it is not. Any discussion on getting someone to do it, reporting on how to do it or any other naughty things is a ban-able offense. To get the script to run at a certain time each day, just use the Windows task scheduler. Edited September 8, 2014 by DarthCookieMonster The Vollatran project My blog: http://www.vollysinterestingshit.com/ Link to comment Share on other sites More sharing options...
JohnOne Posted September 8, 2014 Share Posted September 8, 2014 Best just write a new script. What you are asking for will get the angry AutoIt villagers hunting you with pitch forks. Bert and Blue_Drache 2 AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted September 8, 2014 Moderators Share Posted September 8, 2014 mem94043,Welcome to the AutoIt forums. Is it possible to convert an AutoIt EXE file back into a script??Not legally - and it is not something we discuss here. some good code samples/examples that would show how a script can close and re-open a specific progam at the same time every dayThat is not difficult at all. You will need a loop running to check the time (there are some timing macros (@HOUR, @MIN, @SEC, @MSEC) which will give you that to microsecond precision) - then when the moment arrives ProcessClose and Run should get your program closed and reopened. And if you care to share this program's name, we might even be able to offer you a less drastic method for closing it. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
Recommended Posts