home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of Shareware - Software Farm 2
/
wosw_2.zip
/
wosw_2
/
HOME
/
THORO44.ZIP
/
FINSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-06-21
|
3KB
|
84 lines
echo off
cls
if "%1"=="" goto nodrive
echo ╔═══════════════════════════════════════════════════╗
echo ║ Cambridge Thoroughbred Handicapper Version 4.4 ║
echo ╠═══════════════════════════════════════════════════╣
echo ║ This batch file will install Thoroughbred 4.4 ║
echo ║ on a floppy disk in Drive %1. Please make sure ║
echo ║ you have a formatted disk in that drive. ║
echo ║ ║
echo ║ If you'd like to stop now without installing ║
echo ║ the program, hit CTRL-C. Hit any other key ║
echo ║ to proceed with the installation. ║
echo ╚═══════════════════════════════════════════════════╝
pause > nul
cls
echo Installing Thoroughbred 4.4 files now...
echo:
copy ntho44s.exe %1
copy t44.bat %1
copy t44s.pak %1
copy cap.cfg %1
copy speedscr.com %1
copy finstall.bat %1
copy hinstall.bat %1
copy readme.com %1
copy threg.exe %1
if not exist %1ntho44s.exe goto badinstall
if not exist %1t44.bat goto badinstall
if not exist %1speedscr.com goto badinstall
if not exist %1t44s.pak goto badinstall
if not exist %1threg.exe goto badinstall
if not exist %1cap.cfg goto badinstall
cls
echo ╔═══════════════════════════════════════════════════╗
echo ║ The Installation is Complete ║
echo ╠═══════════════════════════════════════════════════╣
echo ║ Thoroughbred 4.4 has been installed on Drive %1 ║
echo ║ To run the program, switch to the drive with ║
echo ║ your working disk. Type T44 and hit ENTER. ║
echo ╚═══════════════════════════════════════════════════╝
echo:
prompt $p$g
goto finis
:badinstall
echo:
cls
echo ╔═══════════════════════════════════════════════════╗
echo ║ Sorry, the Installation is NOT Complete ║
echo ╠═══════════════════════════════════════════════════╣
echo ║ Please check to make sure all the necessary ║
echo ║ files were on your installation disk. Also make ║
echo ║ sure you specified the name of an existing ║
echo ║ drive, including the colon. For example, to ║
echo ║ install the program on Drive B, you'd type ║
echo ║ ║
echo ║ FINSTALL B: (and hit ENTER) ║
echo ║ ║
echo ╚═══════════════════════════════════════════════════╝
echo:
goto finis
:nodrive
cls
echo ╔═══════════════════════════════════════════════════╗
echo ║ Sorry, No Drive Specified ║
echo ╠═══════════════════════════════════════════════════╣
echo ║ To make the installation work properly, you ║
echo ║ must specify a Drive letter. For example, to ║
echo ║ install Statpak on Drive B:, type ║
echo ║ ║
echo ║ FINSTALL B: (and hit ENTER) ║
echo ║ ║
echo ╚═══════════════════════════════════════════════════╝
echo:
prompt $p$g
goto finis
:finis