@ECHO OFF cls echo. echo If you are installing over a previous version its a good idea to back echo up the files in your Pantry. Press 'Ctrl Break' to stop installation echo and backup files. (See Pantry file info on how to backup files). echo. echo This install puts the program onto your hard drive and into a directory echo called 'eatwell'. 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 'eatwell' from Dos prompt to run program. echo. echo To run from Windows file manager, click on the eatwell directory and echo either the file eatwell.pif or the file eatwell.exe. The info file in the echo Pantry 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 eatwell.exe c:\eatwell\ if errorlevel 5 goto disker if errorlevel 4 goto room if errorlevel 1 goto wrongdir xcopy *.dat c:\eatwell\ xcopy *.cfg c:\eatwell\ xcopy *.hlp c:\eatwell\ xcopy *.pif c:\eatwell\ xcopy *.bgi c:\eatwell\ xcopy prolog.err c:\eatwell\ xcopy *. c:\eatwell\ /p xcopy eatwell.bat c:\ xcopy install*.bat c:\eatwell\ rem attrib -r c:\eatwell\*.* 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