home *** CD-ROM | disk | FTP | other *** search
/ Fanclub Das Freakmagazin 2 / FANCLUB2.ISO / patches / micro / install.bat < prev    next >
DOS Batch File  |  1994-04-13  |  680b  |  21 lines

  1. @echo off
  2. rem Microcosm version 1.1 update batch file
  3. rem usage -     install [directory to install to]
  4. rem example - install c:\mcosm, to install in a directory c:\mcosm
  5.  
  6. if %1s == s goto fail
  7. echo Microcosm Version 1.1 Update Procedure Initiated!
  8. echo Please stand by while upgrading the files in your directory %1
  9. echo Be sure to read README.TXT for details.
  10. copy *.* %1
  11. goto finish
  12.  
  13. :fail
  14. echo Microcosm Version 1.1 Update Procedure
  15. echo You have incorrectly started the procedure.
  16. echo usage   :- install [directory containing Microcosm]
  17. echo example :- 'install C:\MCOSM', to update the version of Microcosm 
  18. echo            stored in C:\MCOSM
  19.  
  20. :finish
  21.