home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1996 May
/
PCW596.iso
/
demgier
/
themach
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1995-07-31
|
780b
|
44 lines
echo off
cls
if "%1"=="" goto error
if "%2"=="" goto error
%1\junkyard.exe
@echo.
@echo Installing the game to %2\MACDEMO
@echo.
%2
md %2\MACDEMO
cd %2\MACDEMO
%1\pak
call machines.bat
cls
@echo The Machines installation complete
@echo.
@echo Type MACHINES to play the game
@echo.
goto end
:error
echo.
echo The Machines game installation
echo.
echo.
echo Please specify the source and destination drive:-
echo.
echo for example:-
echo.
echo If your floppy drive is drive A, and your hard-disk is drive C, type:-
echo A:\INSTALL A: C:
echo.
echo.
echo (C) 1995 Merit Studios
echo.
goto end
:end