@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 'hunt'. 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 'hunt' 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 hunt directory and echo either the file hunt.pif or the file hunt.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 hunt.exe c:\hunt\ if errorlevel 5 goto disker if errorlevel 4 goto room if errorlevel 1 goto wrongdir xcopy *.dba c:\hunt\ xcopy *.dat c:\hunt\ xcopy *.cfg c:\hunt\ xcopy *.hlp c:\hunt\ xcopy *.pif c:\hunt\ xcopy *.txt c:\hunt\ xcopy prolog.err c:\hunt\ xcopy hunt.bat c:\ xcopy install*.bat c:\hunt\ xcopy *. c:\hunt\ /p rem attrib -r c:\hunt\*.* 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