1---2title: 'Autoit - Automated Windows Events'3date: '2007-08-07'4published_at: '2007-08-07T16:11:00.000+10:00'5tags: ['autoit', 'code', 'windows']6author: 'Gavin Jackson'7excerpt: 'I''ve been doing some work recently that requires me to perform automated windows events - a colleague pointed me at Autoit ( http://www.autoitscript.com/autoit3/ ). It''s a free scripting framework tha...'8updated_at: '2007-08-07T16:25:28.430+10:00'9legacy_url: 'http://www.gavinj.net/2007/08/autoit-automated-windows-events.html'10---1112I've been doing some work recently that requires me to perform automated windows events - a colleague pointed me at Autoit ([http://www.autoitscript.com/autoit3/](http://www.autoitscript.com/autoit3/)).1314It's a free scripting framework that allows you to build automated scripts that interact with windows. The help system is excellent, and the SciTE editor that you can optionally download makes writing the actual scripts a breeze.1516You can use all of the standard programming constructs - if, for while etc. You can check for windows based on window title and content, you can interact with window components and you can wait for window events to occur.1718There are several use cases for this tool - testing Windows GUI apps, scripting installers and performing unattended batch operations.192021