home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
101 OnLy ThE BeSt GaMeS 4
/
101_Only_The_Best_Games_4.iso
/
page2
/
rrobot
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1995-08-31
|
2KB
|
60 lines
echo off
cls
if "%1" == "" goto INSTRUCT
:INSTALL
echo RENEGADE ROBOT RETALIATION Hard Disk Installation
echo -------------------------------------------------
echo This program will install RENEGADE ROBOT RETALIATION
echo on your hard disk in a directory called %1/JUST4ME/RRR
echo from your floppy disk drive. You must have 1.4 Megabytes
echo free on your hard drive for the program to load
echo properly.
pause
md %1\JUST4ME
md %1\JUST4ME\RRR
cls
echo --- LOADING PROGRAM FILES ---
copy *.* %1\JUST4ME\RRR\*.*
%1
cd\JUST4ME\RRR
cls
cls
echo RENEGADE ROBOT RETALIATION
echo --------------------------
echo TO START, MOVE TO THE %2\JUST4ME\RRR DIRECTORY, AND
echo ENTER THE FOLLOWING:
echo -
echo GO -- To Begin The Game
echo -
echo ---------------------------
echo WE HOPE YOU ENJOY!!!
pause
goto EXIT
:INSTRUCT
cls
echo RENEGADE ROBOT RETALIATION Hard Disk Installation
echo -------------------------------------------------
echo This program installs RENEGADE ROBOT RETALIATION on your
echo hard drive. For this program, please adopt the following
echo format:
echo -
echo INSTALL C:
echo -
echo where C: = hard drive on which the program is to be
echo installed
echo -
echo Substitute other drive letter as appropriate. Please
echo note you must have 1.4 Megabytes free on your hard drive
echo for the program to load properly.
pause
cls
goto EXIT
:EXIT