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 / DialUpNetworking.aut < prev    next >
Text File  |  1999-09-14  |  870b  |  36 lines

  1. ; Example Script
  2. ; ==============
  3. ;
  4. ; OS:     Windows 9x/NT
  5. ; Author: Jonathan Bennett (jbennett@hidden.demon.co.uk)
  6. ;
  7. ; This script runs a connection to the Internet
  8. ; You will need to change things like the name of your connection
  9. ; and usernames and passwords
  10.  
  11. MsgBox, 4, AutoIt Example, Please examine and edit this file with the name of your Internet connection before use. Run now?
  12. IfMsgBox, NO, Goto, denied
  13.  
  14. ; Execute the "Demon Internet" connection
  15. Run, rundll rnaui.dll\,RnaDial Demon Internet
  16.  
  17. ; Wait for the connect window to be active
  18. WinWaitActive, Connect To, Demon Internet
  19.  
  20. ; Type in our username and password
  21. Send, !u
  22. Send, USERNAME
  23. Send, !p
  24. Send, PASSWORD
  25.  
  26. ; Connect
  27. Send, {ENTER}
  28.  
  29. ; Wait for the connection window to open then close
  30. WinWaitActive, Connecting to
  31. WinWaitClose, Connecting to
  32.  
  33. ; Finished
  34. denied:
  35. Exit
  36.