home *** CD-ROM | disk | FTP | other *** search
/ PC-Test Pro / PCTESTPRO.iso / disktool / ripterm / entp / install.bat next >
Encoding:
DOS Batch File  |  1995-03-25  |  1.6 KB  |  78 lines

  1. @echo off
  2.  
  3. :
  4. : INSTALL.BAT
  5. :
  6. : v1.00 ■ JB ■ 10-Mar-93 ■ Initial release
  7. : v1.01 ■ JB ■ 31-Jan-95 ■ Updated for RIPterm Test Drive v2.00.01
  8. : v1.02 ■ JB ■ 21-Mar-95 ■ Updated for RIPterm Test Drive v2.00.02
  9. : v1.03 ■ JB ■ 27-Mar-95 ■ Updated for RIPterm Test Drive v2.00.03
  10. :
  11. : TeleGrafix Communications, Inc.
  12. : 16458 Bolsa Chica #15
  13. : Huntington Beach, CA  92649
  14. :
  15. : 714/379-2131 Voice ■ 714/379-2132 Fax ■ 714/379-2133 BBS
  16. :
  17. : Internet:rip.support@telegrafix.com
  18. :
  19.  
  20. cls
  21.  
  22. echo.┌────────────────────────────────────────────────────────────────────────────┐
  23. echo.│ RIPterm Test Drive v2.00.03 Installation                 INSTALL.BAT v1.03 │
  24. echo.└────────────────────────────────────────────────────────────────────────────┘
  25. echo.
  26.  
  27. if "%1" == "" goto NODIRNAME
  28.  
  29. echo.RIPterm will be installed in the %1 directory...
  30. echo.
  31. echo.Press CTRL-C to abort, or press any other key to continue with installation.
  32. pause > NUL
  33.  
  34. type README.DOC | MORE
  35.  
  36. echo.
  37. echo.Press CTRL-C to abort, or press any other key to continue with installation.
  38. pause > NUL
  39.  
  40. md %1 > NUL
  41. TESTDRIV -d -o %1
  42.  
  43. goto DONE
  44.  
  45.  
  46. :NODIRNAME
  47.  
  48. echo.RIPterm will be installed in the C:\RIPTERM directory...
  49. echo.
  50. echo.Press CTRL-C to abort, or press any other key to continue with installation.
  51. pause > NUL
  52.  
  53. type README.DOC | MORE
  54.  
  55. echo.
  56. echo.Press CTRL-C to abort, or press any other key to continue with installation.
  57. pause > NUL
  58.  
  59. md C:\RIPTERM > NUL
  60. TESTDRIV -d -o C:\RIPTERM
  61. C:
  62. cd \RIPTERM
  63.  
  64. goto DONE
  65.  
  66.  
  67. :DONE
  68.  
  69. echo.
  70. echo.  *** Installation complete. ***
  71.  
  72. goto END
  73.  
  74.  
  75. :END
  76.  
  77. echo.
  78.