home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0330 - 0339 / ibm0330-0339 / ibm0333.tar / ibm0333 / MSONLIN2.ZIP / LOGOFF.DIA < prev    next >
Encoding:
Text File  |  1992-11-09  |  684 b   |  25 lines

  1. comment ******************************************************************
  2. comment * Microsoft OnLine 2.0 generic logoff script.                    *
  3. comment ******************************************************************
  4.  
  5. comment * Turn these options on for debugging.  Output sent to online.err.
  6. monitor off
  7. debug off
  8.  
  9. comment * Clear comm buffers so modem will take commands.
  10. dump
  11.  
  12. comment * Drop the line to hang up modem.
  13. drop
  14.  
  15. comment * Send '+++' to modem to put it into command state.
  16. timeout 5
  17. eol NONE 
  18. send '+++'
  19. eol \0D\
  20. waitfor 'OK' else CONTINUE
  21.  
  22. label CONTINUE
  23. comment * Send 'ATZ' to reset modem to its last stored configuration.
  24. send 'ATZ'
  25.