INSTALLE.BAT  ·  BAT  ·  2.2 KB  ·  1991-08-22  ·  from PCLeisure_Issue-09_Sep-1991
echo off
cls
echo               PC Leisure Cover Disk - July/August 1991
echo                 INSTALL PROGRAM FOR 3D KIT GAME (EGA VERSION)
echo .
echo         Disk compiled by the Public Domain & Shareware Library
echo      Winscombe House, Beacon Road, Crowborough, EAST SUSSEX. TN6 1UL
echo              Telephone: 0892-663298  Fax: 0892-667473
echo .
echo Is this PC Leisure disk in the A: drive ?

:intro
yesno
cls
if errorlevel 89 if not errorlevel 90 goto aok
if errorlevel 78 if not errorlevel 79 goto bok
goto intro

:aok
echo Do you want to install the 3D KIT GAME to the B: drive ?
echo (If you only have a single floppy drive, assume your drive is both
echo  Drive A: and Drive B:, swapping disks when the prompt asks you to)
:aback
yesno
cls
if errorlevel 89 if not errorlevel 90 goto abinst
if errorlevel 78 if not errorlevel 79 goto acinst
goto aback

:bok
echo (Assuming your PC Leisure disk in the the B: drive)
echo Do you want to install the 3D Kit Game to the A: drive ?
:bback
yesno
cls
if errorlevel 89 if not errorlevel 90 goto bainst
if errorlevel 78 if not errorlevel 79 goto bcinst
goto bback

:abinst
echo Installing 3D Kit Game (EGA) from Drive A: to Drive B:
echo (If this is not right, press Control and C together now...)
pause
cd b:\
md b:\3dkit
3DKITE b:\3dkit
copy 3DKE.bat b:\3dkit.bat
echo Installation complete ! Type 3DKIT to play.
goto xit

:acinst
echo Installing 3D Kit Game (EGA) from Drive A: to Drive C:
echo (If this is not right, press Control and C together now...)
pause
cd c:\
md c:\3dkit
3DKITE c:\3dkit
copy 3DKE.bat c:\3dkit.bat
echo Installation complete ! Type 3DKIT to play.
goto xit

:bainst
echo Installing 3D Kit Game (EGA) from Drive B: to Drive A:
echo (If this is not right, press Control and C together now...)
pause
cd a:\
md a:\3dkit
3DKITE a:\3dkit
copy 3DKE.bat a:\3dkit.bat
echo Installation complete ! Type 3DKIT to play.
goto xit

:bcinst
echo Installing 3D Kit Game (EGA) from Drive B: to Drive C:
echo (If this is not right, press Control and C together now...)
pause
cd c:\
md c:\3dkit
3DKITE c:\3dkit
copy 3DKE.bat c:\3dkit.bat
echo Installation complete ! Type 3DKIT to play.
goto xit

:xit
pause