home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 10 / XENIATGM10.ISO / tmw / install.bat < prev    next >
DOS Batch File  |  1995-08-04  |  1KB  |  42 lines

  1. @echo off
  2. echo This batch file will copy everything except the music off the CD
  3. echo If this isn't what you want to do, hit Ctrl-C NOW. Otherwise...
  4. pause
  5. if %1=="" goto doofus
  6. echo Okay, then, here we go.
  7. echo.
  8. echo Creating directory structure...
  9. MD c:\TMW
  10. MD c:\TMW\MAPS
  11. MD c:\TMW\MAPS\ART
  12. MD c:\TMW\MAPS\SFX
  13. MD c:\TMW\MAPS\MUSIC
  14. echo Copying program files...
  15. COPY %1\*.* c:\tmw
  16. echo Copying data files...
  17. COPY %1\MAPS\*.* c:\tmw\MAPS
  18. echo Copying art files...
  19. COPY %1\MAPS\ART\*.* c:\tmw\MAPS\ART
  20. echo Copying sound files...
  21. COPY %1\MAPS\SFX\*.* c:\tmw\MAPS\SFX
  22. COPY %1\MAPS\MUSIC\COVER???.RAW c:\tmw\MAPS\MUSIC
  23. echo All done!
  24. echo.
  25. echo You may need to copy the file CTL3DV2.DLL to your Windows SYSTEM
  26. echo directory. I leave that up to you.
  27. echo.
  28. echo If you get an error message like "Cannot find WING.DLL" or some
  29. echo such, you need to install WinG. To do that, run SETUP.EXE from
  30. echo the WINGDISK directory off the CD from inside Windows.
  31. goto end
  32.  
  33. :doofus
  34. echo.
  35. echo The syntax for this batch file is INSTALL x:, where x is the letter
  36. echo of your CD-ROM drive. If you already have a directory named TMW on your
  37. echo c: drive, delete it completely before running this batch file.
  38.  
  39. :end
  40. echo.
  41. echo Thank you for testing THIS MEANS WAR!
  42.