home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fanclub Das Freakmagazin 2
/
FANCLUB2.ISO
/
patches
/
micro
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1994-04-13
|
680b
|
21 lines
@echo off
rem Microcosm version 1.1 update batch file
rem usage - install [directory to install to]
rem example - install c:\mcosm, to install in a directory c:\mcosm
if %1s == s goto fail
echo Microcosm Version 1.1 Update Procedure Initiated!
echo Please stand by while upgrading the files in your directory %1
echo Be sure to read README.TXT for details.
copy *.* %1
goto finish
:fail
echo Microcosm Version 1.1 Update Procedure
echo You have incorrectly started the procedure.
echo usage :- install [directory containing Microcosm]
echo example :- 'install C:\MCOSM', to update the version of Microcosm
echo stored in C:\MCOSM
:finish