home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Game Fest 1994
/
gamefeststgcomputerlimited1994.iso
/
files
/
game_vga
/
fordiii1
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1993-10-26
|
1KB
|
42 lines
echo off
echo.
echo.
if "%1"=="" goto message
if "%2"=="" goto message
goto install
:message
echo Thank you for purchasing Ford Simulator III. For this program
echo to run properly it must be installed onto your hard drive. To
echo help you do this we have included this installation program. To
echo correctly use this program you need to type "install" followed by
echo the letter name of the drive from which you will be installing
echo Ford Simulator III and the letter name of the drive on which
echo you wish to have the program installed.
echo.
echo "a:\>install A C"
echo.
echo.
echo This program will now end. To install Ford Simulator III type
echo install and the appropriate drive letters for your computer.
echo.
pause
goto end
:install
echo This program will create a directory on your drive "%2" called
echo FORD and install the files you need to play the game. Press
echo CTRL-BREAK to abort this installation or any other key to proceed.
echo.
echo.
pause
%2:
cd\
md ford
%1:
copy install2.bat %2:\ford\install2.bat
copy lha.exe %2:\ford
copy fjoin.exe %2:\ford
%2:
cd\ford
%2:\ford\install2.bat %1 %2
:end