home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 January / PCWELT_1_2006.ISO / pcwsoft / autoit-v3-setup.exe / AutoIt.chm / html / tutorials / winzip / script.txt < prev    next >
Encoding:
Text File  |  2005-08-07  |  1.1 KB  |  48 lines

  1. ; Run the winzip installer
  2. Run("winzip90.exe")
  3.  
  4. ; Initial Setup Screen
  5. WinWaitActive("WinZip« 9.0 SR-1 Setup", "&Setup")
  6. Send("!s")
  7.  
  8. ; Install location
  9. WinWaitActive("WinZip Setup", "into the following folder")
  10. Send("{ENTER}")
  11.  
  12. ; Features overview
  13. WinWaitActive("WinZip Setup", "WinZip features include")
  14. Send("!n")
  15.  
  16. ; License agreement
  17. WinWaitActive("License Agreement")
  18. Send("!y")
  19.  
  20. ; Quick start
  21. WinWaitActive("WinZip Setup", "Quick Start Guide")
  22. Send("!n")
  23.  
  24. ; Choose interface
  25. WinWaitActive("WinZip Setup", "switch between the two interfaces")
  26. Send("!c")
  27. Send("!n")
  28.  
  29. ; Installation type (custom/express)
  30. WinWaitActive("WinZip Setup", "&Express setup (recommended)")
  31. Send("!e")
  32. Send("!n")
  33.  
  34. ; Select file associations
  35. WinWaitActive("WinZip Setup", "WinZip needs to associate itself with your archives")
  36. Send("!n")
  37.  
  38. ; Completed installation screen
  39. WinWaitActive("WinZip Setup", "Thank you for installing this evaluation version")
  40. Send("{ENTER}")
  41.  
  42. ; Wait for winzip to load then close it
  43. WinWaitActive("WinZip (Evaluation Version)")
  44. WinClose("WinZip (Evaluation Version)")
  45.  
  46.  
  47.  
  48.