home *** CD-ROM | disk | FTP | other *** search
- ; Example Script
- ; ==============
- ;
- ; OS: Windows 9x
- ; Author: Jonathan Bennett (jbennett@hidden.demon.co.uk)
- ;
- ; Will shutdown Windows98. Remove the MsgBox lines if you don't want
- ; to be prompted
- ;
-
- MsgBox, 4, AutoIt Example, Really shutdown windows?
- IfMsgBox, NO, Goto, denied
-
- WinMinimizeAll
- WinActivate, Program Manager
- Send, !{F4}
- WinWaitActive, Shut Down Windows
- Send, !s
- Send, {ENTER}
-
- denied:
- Exit