home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Jason Aller Floppy Collection
/
181.img
/
FUTURE.ZIP
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1990-05-14
|
2KB
|
62 lines
@echo off
cls
if %1a == a goto E0
if %2a == a goto E0
echo ╔═══════════════════════════════════════════════════════════════════════╗
echo ║ ║
echo ║ Future Classics Collection Intallation ║
echo ║ ║
echo ║ This will create a directory called %2\FC1 on your destination disk, ║
echo ║ and will install Future Classics Collection in that directory. ║
echo ║ ║
echo ║ If you don't want to install Future Classics Collection now, press ║
echo ║ Ctrl-Break. ║
echo ║ ║
echo ╚═══════════════════════════════════════════════════════════════════════╝
pause
echo Creating directory %2\FC1...
if not exist %2\fc1\*.* goto G0
echo There is already a \FC1 directory on drive %2. If you don't want to
echo install Future Classics Collection into that directory, press Ctrl-Break.
echo Otherwise, press space.
pause
goto G2
:G0
md %2\fc1
:G2
:1
if exist %1\fc1.exe goto 2
echo Insert Future Classics Collection Disk One in drive %1.
pause
goto 1
:2
if exist %1\aldat2.fpf goto D1
echo Copying Future Classics Collection Disk One...
copy %1\*.* %2\fc1
if not exist %2\fc1\fc1.exe goto E1
%2\fc1\part_two %1 %2
:D1
echo Copying Future Classics Collection files...
copy %1\*.* %2\fc1
if not exist %2\fc1\nakada1.ron goto E1
%2
cd %2\fc1
echo Future Classics Collection is now installed on your destination disk.
echo To run it, type "FC1".
goto D2
:E0
echo Instructions: To install Future Classics Collection, you must specify
echo the drive containing the floppies that you are installing FROM, and
echo the drive you are installing TO. For example: if you are installing
echo from floppy drive A: to hard drive C:, then you should type
echo INSTALL A: C:
echo ...and press Enter. Please try again.
goto ED
:E1
echo Installation Error: Perhaps there isn't enough space on your destination
echo disk. Future Classics Collection installation requires at least 720k
echo free space.
:ED
echo Future Classics Collection was not installed correctly.
:D2