home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Education
/
collectionofeducationcarat1997.iso
/
SPORT
/
FISHEX32.ZIP
/
INSTALLC.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-12-31
|
2KB
|
63 lines
@ECHO OFF
cls
echo.
echo If you are installing over a previous version its a good idea to back
echo up the log files. Press 'Ctrl Break' to stop installation
echo and backup files. (See Library file 'info' on how to backup files).
echo.
echo This install puts the program onto your hard drive and into a directory
echo called 'fish'. You must run the install from the subdirectory where
echo you have the original files. The program asks you to copy certain
echo files in case you have an existing copy of the program; if you are
echo copying over a previous version and wish to save log information then
echo answer 'no' to the appropriate log file to save the old file which the
echo new program can use. Enter 'fish' from Dos prompt to run program.
echo.
echo YOU MUST GO INTO SECTION 1 FIRST TO SET THE CORRECT PATH.
echo.
echo To run from Windows file manager, click on the fish directory and
echo either the file fish.pif or the file fish.exe. The info file in the
echo Library tells you how to create an icon under Windows to run the program.
echo.
echo Enter 'Ctrl Break' or turn the computer off and then on to stop install
echo now if desired or any key to continue. Good Luck and Have a Great Day!
echo.
pause
xcopy fish.exe c:\fish\
if errorlevel 5 goto disker
if errorlevel 4 goto room
if errorlevel 1 goto wrongdir
xcopy *.dba c:\fish\
xcopy *.dat c:\fish\
xcopy *.cfg c:\fish\
xcopy *.hlp c:\fish\
xcopy *.pif c:\fish\
xcopy *.txt c:\fish\
xcopy prolog.err c:\fish\
xcopy fish.bat c:\
xcopy install*.bat c:\fish\
xcopy *. c:\fish\ /p
rem attrib -r c:\fish\*.*
goto exit
:wrongdir
echo .
echo You did not run install from source directory; change to the proper
echo drive and/or directory and rerun install
echo .
pause
goto exit
:room
echo .
echo There is not enough room on your destination disk or you do not
echo have enough memory; make hard drive room or free low memory.
echo .
pause
goto exit
:disker
echo.
echo Disk write error occured
echo.
pause
goto exit
:exit