home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC/CD Gamer UK 15
/
PCGAMER15.bin
/
squarez
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1995-10-12
|
1KB
|
50 lines
echo OFF
CLS
echo.
echo ▄▄▄ ▄▄ ▄ ▄▄▄ ▄▄▄ ▄▄▄ ▄ ▄ ▄▄▄ ▄▄ ▄ ▄▄▄ ▄▄▄ ▄▄▄ ▄ ▄ ▄▄▄ ▄▄▄ ▄▄▄ ▄▄▄
echo █ █▐ █ █▄▄ █ █▄█ █ █ █ █▐ █ █ █▄▄ █ █ █ █ █▄█ █▄▀ █▄ ▄▀
echo ▄█▄ █▐▄█ ▄▄█ █ █ █ █▄▄ █▄▄ ▄█▄ █▐▄█ █▄█ ▄▄█ █▄█ █▄█ █ █ █ █ █▄▄ █▄▄
echo ▀▄
echo.
echo.
IF "%1"=="" GOTO EXPLAIN
IF EXIST %1:\*.* GOTO LETSDOIT
:NODRIVE
echo Either the drive letter you have specified does not exist or you
echo added a colon ':' where it wasn't needed. Try again.
echo.
GOTO EXPLAIN
:LETSDOIT
echo.
echo.
echo Copying "Squarez" files to %1:\SQUAREZ
echo.
MD %1:\SQUAREZ
COPY SQUAREZ.EXE %1:\SQUAREZ
COPY INSTALL.BAT %1:\SQUAREZ
COPY ORDER.TXT %1:\SQUAREZ
COPY *.SQU %1:\SQUAREZ
%1:
CD\SQUAREZ
echo.
echo Installation complete. "Squarez" should now be installed in the
echo directory %1:\SQUAREZ.
echo.
echo Type `SQUAREZ` to run the program.
GOTO END
:EXPLAIN
echo To install "Squarez" to your hard disk please type INSTALL
echo followed by the letter of your hard drive. So for example, if the
echo letter of your hard drive was 'C', you would type the following at
echo the 'DOS' prompt :
echo.
echo Install C
echo.
echo.
echo A directory called `SQUAREZ` will be created on your hard drive
echo and the relevant files will be copied into it.
echo.
echo.
:END
ECHO.