home *** CD-ROM | disk | FTP | other *** search
/ Current Shareware 1994 January / SHAR194.ISO / games / evolite.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-10-11  |  823b  |  34 lines

  1. @echo off
  2. if "%1" == "" goto errmsg
  3. md %1\evolite
  4. echo       Copying files to %1\evolite...
  5. copy *.* %1\evolite
  6. if not exist %1\evolite\install.bat goto errmsg
  7. del %1\evolite\install.bat
  8. cd %1\evolite
  9. echo.
  10. echo  DONE
  11. echo.
  12. echo.
  13. echo  Go into directory %1\evolite
  14. echo.
  15. echo   and type  "go"
  16. echo.
  17. echo.
  18. goto end
  19. :errmsg
  20. echo.
  21. echo       *** NOT INSTALLED ***
  22. echo.
  23. echo  Please use   install drive:[\path]
  24. echo.
  25. echo  For example, install c:\games    Assuming c:\games exists, this will
  26. echo                                   create directory c:\games\evolite
  27. echo                                   and copy all the files there.
  28. echo.
  29. echo               install c:          will create directory c:\evolite
  30. echo                                   and copy all the files there.
  31. echo.
  32. :end
  33.  
  34.