home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Game Killer
/
Game_Killer.bin
/
173.INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-12-10
|
3KB
|
96 lines
echo off
cls
break on
if %0==a:install goto adrive
if %0==A:install goto adrive
if %0==A:INSTALL goto adrive
if %0==b:install goto bdrive
if %0==B:install goto bdrive
if %0==B:INSTALL goto bdrive
if %0==install goto doinstall
if %0==INSTALL goto doinstall
echo Please switch to the drive you wish to install from before
echo starting install. For example, to install from the B: drive,
echo Enter B:
echo Then enter INSTALL %1
goto End
:adrive
a:
goto doinstall
:bdrive
b:
goto doinstall
:doinstall
if "%1"=="" goto DriveNeeded
if exist %1\*.* goto makedir
:InvalidDrive
echo "%1" is an invalid drive name. Please use the correct drive letter
echo followed by a colon:
:DriveNeeded
echo Please specify which drive to install Football Edition 1992 to,
echo for example:
:Example
echo.
echo install c:
goto End
:MakeDir
echo ╔═══════════════════════════════════════════════════════════════╗
echo ║ ║
echo ║ GAMBLER'S MATE ║
echo ║ Football Edition 1992 ║
echo ║ Copyright (c) 1992 ║
echo ║ By Mark E. Savey ║
echo ║ Disk Install Utility ║
echo ║ ║
echo ║ ║
echo ║ This program will install all files into a directory called ║
echo ║ "\GM\GM92" on drive %1. If you do not wish to do this, then ║
echo ║ press Ctrl-C then "Y" now. ║
echo ║ ║
echo ╚═══════════════════════════════════════════════════════════════╝
echo.
pause
echo.
echo Checking for existence of %1\GM\GM92...
if exist %1\GM\GM92\*.* goto DirExists
if not exist %1\GM\*.* goto makeit
goto carryon
:makeit
md %1\GM > NUL
:carryon
echo.
echo Making appropriate Football Edition 1992 directories...
md %1\GM\GM92 > NUL
echo Everything is OK. %1\GM\GM92 present!
goto CopyFiles
:DirExists
echo WARNING: The directory %1\GM\GM92 already exists. Press Ctrl-C then
echo "Y" now if you don't want to overwrite the contents of that
echo directory.
echo.
pause
echo.
:CopyFiles
echo.
echo Extracting and copying "Football Edition 1992" files to %1\GM\GM92...
GMBLMT92 -o %1\GM\GM92
if not exist %1\GM\GM92\RECORD.S3 goto InstallError
cls
echo ╔══════════════════════════════════════════════════════════════════════╗
echo ║ ║
echo ║ Football Ed. 1992 has been successfully installed to your %1 drive. ║
echo ║ ║
echo ║ To run Football Edition 1992 type GM92 and press ENTER. ║
echo ║ ║
echo ╚══════════════════════════════════════════════════════════════════════╝
%1
cd %1\GM\GM92
goto End
:InstallError
echo ERROR: Installation of Football Edition 1992 into %1\GM\GM92 was unsuccessful.
echo This could be caused because your %1 drive is full or unaccessible.
echo Football Edition 1992 needs about 700K of free disk space.
echo.
:End
echo.