home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1998 February / PCOnline_02_1998.iso / filesbbs / win3x / ripterm.arj / RTD21100.EXE / INSTALL.BAT next >
DOS Batch File  |  1995-09-08  |  1KB  |  67 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. : v1.04 ■ JR ■ 09-Sep-95 ■ Updated for RIPterm Test Drive v2.11.00
  11. :
  12. : TeleGrafix Communications, Inc.
  13. : 16458 Bolsa Chica #15
  14. : Huntington Beach, CA  92649
  15. :
  16. : 714/379-2131 Voice ■ 714/379-2132 Fax ■ 714/379-2133 BBS
  17. :
  18. : Internet:rip.support@telegrafix.com
  19. :
  20.  
  21. cls
  22.  
  23. echo.┌────────────────────────────────────────────────────────────────────────────┐
  24. echo.│ RIPterm Test Drive v2.11.00 Installation                 INSTALL.BAT v1.04 │
  25. echo.└────────────────────────────────────────────────────────────────────────────┘
  26. echo.
  27.  
  28. if "%1" == "" goto NODIRNAME
  29.  
  30. echo.RIPterm will be installed in the %1 directory...
  31. echo.
  32. echo.Press CTRL-C to abort, or press any other key to continue with installation.
  33. pause > NUL
  34.  
  35. md %1 > NUL
  36. TESTDRIV -d -o %1
  37.  
  38. goto DONE
  39.  
  40.  
  41. :NODIRNAME
  42.  
  43. echo.RIPterm will be installed in the C:\RIPTERM directory...
  44. echo.
  45. echo.Press CTRL-C to abort, or press any other key to continue with installation.
  46. pause > NUL
  47.  
  48. md C:\RIPTERM > NUL
  49. TESTDRIV -d -o C:\RIPTERM
  50. C:
  51. cd \RIPTERM
  52.  
  53. goto DONE
  54.  
  55.  
  56. :DONE
  57.  
  58. echo.
  59. echo.  *** Installation complete. ***
  60.  
  61. goto END
  62.  
  63.  
  64. :END
  65.  
  66. echo.
  67.