Scripting with Autoit

Ever feel the need to automate your frequent used programs or process you do on your computer. There are times you want to perform a number of steps to get the final results and perhaps verify you output. Many times you repeat these steps daily, or weekly. Wouldn’t it be great to:

There are tools available to support your automation needs. Such tools are Windows Batch files, VBScripts, SendKeys, Perl, Windows PowerShell, Visual Basic, and others. Here is a great tool called Autoit V3. It is a freeware BASIC-like scripting language with basic-like syntax and rich function set. It is designed for automating the Windows GUI (Graphical User Internet) and general scripting. It uses a combination of simulated keystrokes, mouse movement and window/control manipulation in order to automate tasks and processes in a way not possible or reliable with other languages (e.g. VBScript and SendKeys). AutoIt is also small, self-contained and will run on all versions of Windows out-of-the-box with no annoying runtimes required. This means that most people who have ever written scripts or used a high-level language should be able to pick it up easily. If you are not a programmer or developer, you can use the built-in recorder to develop your general automation.

AutoIt was initially designed for PC “roll out” solutions to reliably automate and configure thousands of PCs. This solution became a powerful language that supports complex expressions, user functions, loops and everything else that veteran scripters would expect and desire. Below are the main features:

AutoIt has been designed to be as small as possible and stand-alone development tool with no external .dll files or registry entries required making it safe to use on Servers. Scripts can be compiled into stand-alone executable with Aut2Exe. Also supplied is a combined COM and DLL version of AutoIt called AutoItX that allows you to add the unique features of AutoIt to your own favorite scripting or programming languages.

AutoIt comes with a lite version of SciTe that makes editing scripts easy to use. Users can also download a complete version of SciTe that includes additional tools for more powerful and easier development.

An example of success - I used Autoit for a major client to export reports daily on file servers at a number of locations. Then I developed a download total using their GUI development kit to manager the download of the daily reports to the corporate server. To keep it more automated, an Autoit script was created to execute the GUI invoked by a task scheduler. This solution has been running since 2006. I also used this tool to develop the Access List Manager and VNC Manager. You can find both of these tools on my site.

Download here to try it or go to www.autoitscript.com to read more about before you download.