home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 April / PCWorld_2001-04_cd.bin / Software / Vyzkuste / autoit / AutoIt.exe / AutoIt.msi / Cabs.w1.cab / Shutdown98.aut < prev    next >
Text File  |  1999-09-14  |  432b  |  22 lines

  1. ; Example Script
  2. ; ==============
  3. ;
  4. ; OS:     Windows 9x
  5. ; Author: Jonathan Bennett (jbennett@hidden.demon.co.uk)
  6. ;
  7. ; Will shutdown Windows98.  Remove the MsgBox lines if you don't want
  8. ; to be prompted
  9. ;
  10.  
  11. MsgBox, 4, AutoIt Example, Really shutdown windows?
  12. IfMsgBox, NO, Goto, denied
  13.  
  14. WinMinimizeAll
  15. WinActivate, Program Manager
  16. Send, !{F4}
  17. WinWaitActive, Shut Down Windows
  18. Send, !s
  19. Send, {ENTER}
  20.  
  21. denied:
  22. Exit