home *** CD-ROM | disk | FTP | other *** search
- echo off
- if "%1"=="-c" goto setup
- if "%1"=="-C" goto setup
- if "%1"=="/c" goto setup
- if "%1"=="/C" goto setup
- if "%1"=="-x" goto loadbigd
- if "%1"=="-X" goto loadbigd
- if "%1"=="/x" goto loadbigd
- if "%1"=="/X" goto loadbigd
- goto start
- :setup
- rem ----------------------------------------
- rem Configure BIG D
- rem ----------------------------------------
- cls
- D:\BIGD5\BDSETUP.EXE
- if errorlevel 1 goto end
- :start
- cls
- rem echo Loading BIG D...
- :loadbigd
- rem ----------------------------------------
- rem Load BIG D
- rem ----------------------------------------
- D:\BIGD5\BD0.EXE %1 %2 %3 >BIGD.MSG
- if errorlevel 3 goto setup
- if errorlevel 2 goto batch
- if errorlevel 1 goto error
- goto end
- rem ----------------------------------------
- rem Batch File
- rem ----------------------------------------
- :batch
- D:\BIGD5\BIGD_CMD.BAT
- goto start
- rem ----------------------------------------
- rem Error Encountered
- rem ----------------------------------------
- :error
- type bigd.msg
- goto end
- rem ----------------------------------------
- rem End BIG D
- rem ----------------------------------------
- :end
- echo Thank you for using BIG D.
-