home *** CD-ROM | disk | FTP | other *** search
- echo off
-
- echo BGFTADD.BAT Version 3.03, Copyright (c) 1990-1994 Dirac Systems
-
- rem Batch file to add BGFT as an external protocol to telix.
- rem This is done by adding some lines to the file TELIX.CNF,
- rem which must be in the current directory.
-
- if exist TELIX.CNF goto OK1
- echo BGFTADD ERROR: must have TELIX.CNF in the current directory.
- goto END
-
- :OK1
- if exist BGFTTELX.DAT goto OK2
- echo BGFTADD ERROR: must have BGFTTELX.DAT in the current directory.
- goto END
-
- :OK2
- if not exist TELIXCNF.BAK goto OK3
- del TELIXCNF.BAK
-
- :OK3
- ren TELIX.CNF TELIXCNF.BAK
- copy TELIXCNF.BAK+BGFTTELX.DAT TELIX.CNF
-
- echo Backup of config. file saved as: TELIXCNF.BAK
- echo New config. file is: TELIX.CNF
-
- :END
- echo BGFTADD.BAT Completed.
-