home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- :
- : INSTALL.BAT
- :
- : v1.00 ■ 15-Jul-93 ■ Initial release
- :
- : TeleGrafix Communications, Inc.
- : 16458 Bolsa Chica #15
- : Huntington Beach, CA 92649
- : 714/379-2131 Voice ■ 714/379-2132 Fax ■ 714/379-2133 BBS
- : Internet: rip.support@telegrafix.com
- :
-
- cls
-
- echo.┌────────────────────────────────────────────────────────────────────────────┐
- echo.│ RIPterm Installation INSTALL.BAT v1.00 │
- echo.└────────────────────────────────────────────────────────────────────────────┘
-
- if not "%1" == "" goto CUSTOM DIR NAME
-
- echo.
- echo.RIPterm will be installed in the directory "C:\RIPTERM".
- echo.
- echo.Press and key to install, or press CTRL-C to abort ...
- pause > NUL
-
- echo.
- echo.
-
- md C:\RIPTERM
- RTERM154 -d -o C:\RIPTERM
-
- echo.
- echo. *** Installation complete. ***
-
- goto END
-
-
- :CUSTOM DIR NAME
-
- echo.
- echo.RIPterm will be installed in the directory "%1".
- echo.
- echo.Press and key to install, or press CTRL-C to abort ...
- pause > NUL
-
- echo.
- echo.
-
- RTERM154 -d -o %1
-
- echo.
- echo. *** Installation complete. ***
- echo.
- echo. *** press a key ***
- pause
- goto END
-
-
- :END
-
- echo.
-
-