home *** CD-ROM | disk | FTP | other *** search
- echo off
-
- echo BGFTADD Version 2.11, Copyright (c) 1990-1991 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 telxprot.dat goto OK2
- echo BGFTADD ERROR: must have telxprot.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+telxprot.dat telix.cnf
-
- echo Backup of config. file saved as: TELIXCNF.BAK
- echo New config. file is: TELIX.CNF
-
- :END
- echo BGFTADD.BAT Completed.
-