home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 15
/
CD_ASCQ_15_070894.iso
/
maj
/
4472
/
install.bat
next >
Wrap
DOS Batch File
|
1994-04-11
|
2KB
|
84 lines
@echo off
:: Lets Clear the screen and get to work
cls
Echo Welcome to Doe Entertainment (R) (c)1994
Echo Enclosed is QUATRA COMMAND(tm) by Doe Entertainment(R)
Echo .
if %1x == x goto help
if %2x == x goto help
Echo This will copy all the QUATRA COMMAND(tm)
Echo .
Echo Files To:
Echo ************* %2\QUATRA
Echo .
Echo Press Ctrl Break to abort
Echo or
Echo any other key now ... To continue
pause >nul
:: Make the QUATRA directory
mkdir %2\QUATRA
:: Uncompress the files
Echo .
Echo Note:
Echo The file QUATRA.EXE takes some
Echo time to uncompress.
Echo .
copy %1*.* %2\QUATRA\
%1Unzip.com -o %2\QUATRA\QCWGAME.ZIP %2\QUATRA\
echo Y|del %2\QUATRA\QCWGAME.ZIP >nul
echo Y|del %2\QUATRA\install.bat >nul
echo Y|del %2\QUATRA\unzip.com >nul
:: copy the PlayDoe.ini file if there is a windir enviroment varible
if %windir%x == x goto NOWINDIR
:: There was a environment variable to copy to
copy %2\QUATRA\PLAYDOE.INI %windir%
goto HOWTOO
:NOWINDIR
:: if there is no windir environment variable then tell user
:: to copy the file..
echo .
echo *************************************************
echo * You must copy the %2\QUATRA\PLAYDOE.INI file
echo * to your WINDOWS directory.
echo *************************************************
echo .
Echo QUATRA COMMAND(tm)
Echo Now Installed in the %2\QUATRA
echo .
echo Please Run Windows...
goto winrun
:HOWTOO
:: Tell User how to run the program
Echo .
Echo QUATRA COMMAND(tm) Now Installed in the
Echo ********** %2\QUATRA
:WinRun
:: Now That they know how, lets put them there
echo .
echo Choose RUN from the File menu
echo and enter %2\QUATRA\QUATRA.EXE
echo .
Echo Press any key to continue
pause>nul
goto END
:help
echo QUATRA COMMAND Installation
echo Game: QUATRA COMMAND(tm)
echo ------------------------------------------------------------------
echo Usage: INSTALL [source:] [destination:]
echo ------------------------------------------------------------------
echo Example: INSTALL A: C:
echo -
echo - Will install QUATRA from A: to the C: drive
echo - into the C:\QUATRA
Echo Press any key to continue
pause >nul
:END