home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem
- rem BBSee is a command line driven program so the use of this file
- rem is not necessary. It is mainly intended for people who do not
- rem read documentation.
- rem
- if exist BBSee.CFG goto OKAY
- rem
- rem BBSee expect to find a configuration file BBSEE.CFG before being
- rem if it doesn't exist it will abort. There are many features available
- rem in the configuration. Read Chapter 2 for further information, as the
- rem BBSetup program file can create some files on your disk.
- rem
- echo BBSee configuration file not found.
- rem
- if not exist BBSetup.EXE goto FILEERR
- bbsetup
- rem
- rem check to see if you aborted
- if not exist BBSee.CFG got FILEERR
- :OKAY
- rem
- if not exist BBSee.EXE goto FILEERR
- bbsee
- rem
- echo You should delete GO.BAT and use the command line.
- goto end
- return
- :FILEERR
- echo A required file was not found.
- :end
-