home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2001 June / VPR0106A.BIN / OLS / SABABAN22A / sababan22a.lzh / _SETUP.1 / rta50i_Connect.srt < prev    next >
Text File  |  2001-03-10  |  612b  |  39 lines

  1. #TELNET SCRIPT for BANNIN
  2. #VERSION 1.0
  3. #
  4. #Connect Script
  5. #
  6. #返値表
  7. # 0 = No Error
  8. # 1 = Password Error
  9. # 2 = Administrator Password Error
  10. # 9 = Timeout
  11. #
  12. set timeout(10) exit 9
  13. set errortrap(パスワードが間違っています) exit 1
  14. open
  15. wait Password:
  16. type $PASSWORD
  17. type $RETURN
  18. wait >
  19. type administrator
  20. type $RETURN
  21. wait Password:
  22. set errortrap(パスワードが間違っています) exit 2
  23. type $ADMINPASSWORD
  24. type $RETURN
  25. wait #
  26. #Connection Open Seq.
  27. type connect 0
  28. type $PROVIDERCODE
  29. type $RETURN
  30. #Logout
  31. wait #
  32. type exit
  33. type $RETURN
  34. #wait >
  35. type exit
  36. type $RETURN
  37. #Script End
  38. exit 0
  39.