home *** CD-ROM | disk | FTP | other *** search
/ PC/CD Gamer UK 14 / PCGAMER14.bin / tmw / install.bat < prev    next >
DOS Batch File  |  1995-09-26  |  1KB  |  43 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:\pcg
  10. MD c:\pcg\TMW
  11. MD c:\pcg\TMW\MAPS
  12. MD c:\pcg\TMW\MAPS\ART
  13. MD c:\pcg\TMW\MAPS\SFX
  14. MD c:\pcg\TMW\MAPS\MUSIC
  15. echo Copying program files...
  16. COPY %1\*.* c:\pcg\tmw
  17. echo Copying data files...
  18. COPY %1\MAPS\*.* c:\pcg\tmw\MAPS
  19. echo Copying art files...
  20. COPY %1\MAPS\ART\*.* c:\pcg\tmw\MAPS\ART
  21. echo Copying sound files...
  22. COPY %1\MAPS\SFX\*.* c:\pcg\tmw\MAPS\SFX
  23. COPY %1\MAPS\MUSIC\COVER???.RAW c:\pcg\tmw\MAPS\MUSIC
  24. echo All done!
  25. echo.
  26. echo You may need to copy the file CTL3DV2.DLL to your Windows SYSTEM
  27. echo directory. I leave that up to you.
  28. echo.
  29. echo If you get an error message like "Cannot find WING.DLL" or some
  30. echo such, you need to install WinG. To do that, run SETUP.EXE from
  31. echo the WINGDISK directory off the CD from inside Windows.
  32. goto end
  33.  
  34. :doofus
  35. echo.
  36. echo The syntax for this batch file is INSTALL x:, where x is the letter
  37. echo of your CD-ROM drive. If you already have a directory named TMW on your
  38. echo c: drive, delete it completely before running this batch file.
  39.  
  40. :end
  41. echo.
  42. echo Thank you for testing THIS MEANS WAR!
  43.