home *** CD-ROM | disk | FTP | other *** search
/ Everyones Internet / EV1NET.ISO / pc / data / 1008.scp < prev    next >
Encoding:
Text File  |  1997-11-17  |  562 b   |  32 lines

  1. ; This is a script file that demonstrates how
  2. ; to establish a PPP connection with a host
  3. ; that uses a menu system.
  4. ;
  5. ; A script file must have a 'main' procedure.
  6. ; All script execution starts with this 'main'
  7. ; procedure.
  8. ;
  9.  
  10.  
  11. ; Main entry point to script
  12. ;
  13. proc main
  14.  
  15.    ; Change these variables to customize for your
  16.    ; specific Internet service provider
  17.  
  18.  
  19.  
  20.    waitfor "sername:"
  21.    transmit $USERID
  22.    transmit "^M"
  23.  
  24.    waitfor "assword:"
  25.    transmit $PASSWORD
  26.    transmit "^M"
  27.  
  28.    waitfor ">"
  29.    transmit "ppp^M"
  30.  
  31. endproc
  32.