home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo.
- echo CRNDR V1.5 Installation
- echo.
- if "%1"=="320" goto inst320
- if "%1"=="640" goto inst640
- echo This is a very simple batch file that lets you comfortably install the version
- echo you would like to use.
- echo.
- echo To use this batch file you must specify the resolution. Call like this:
- echo.
- echo install 320 - to make the 320x200 files the default.
- echo.
- echo OR
- echo.
- echo install 640 - to make the 640x480 files the default.
- echo.
- goto endinst
- :inst320
- rem I told you this is a simple batch !!
- CPRE.EXE -CCRNDR320.CFG TRACE.PRE
- copy CRNDR320.CFG CRNDR.CFG >NUL
- echo 320x200 files installed.
- goto endinst
- :inst640
- CPRE.EXE -CCRNDR640.CFG TRACE.PRE
- copy CRNDR640.CFG CRNDR.CFG >NUL
- echo 640x480 files installed.
- :endinst
-