home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo This batch file will copy everything except the music off the CD
- echo If this isn't what you want to do, hit Ctrl-C NOW. Otherwise...
- pause
- if %1=="" goto doofus
- echo Okay, then, here we go.
- echo.
- echo Creating directory structure...
- MD c:\scorecd\TMW
- MD c:\scorecd\TMW\MAPS
- MD c:\scorecd\TMW\MAPS\ART
- MD c:\scorecd\TMW\MAPS\SFX
- MD c:\scorecd\TMW\MAPS\MUSIC
- echo Copying program files...
- COPY %1\*.* c:\scorecd\tmw
- echo Copying data files...
- COPY %1\MAPS\*.* c:\scorecd\tmw\MAPS
- echo Copying art files...
- COPY %1\MAPS\ART\*.* c:\scorecd\tmw\MAPS\ART
- echo Copying sound files...
- COPY %1\MAPS\SFX\*.* c:\scorecd\tmw\MAPS\SFX
- COPY %1\MAPS\MUSIC\COVER???.RAW c:\scorecd\tmw\MAPS\MUSIC
- echo All done!
- echo.
- echo You may need to copy the file CTL3DV2.DLL to your Windows SYSTEM
- echo directory. We leave that up to you.
- echo.
- echo If you get an error message like "Cannot find WING.DLL" or some
- echo such, you need to install WinG. To do that, run SETUP.EXE from
- echo the WINGDISK directory off the CD from inside Windows.
- goto end
-
- :doofus
- echo.
- echo The syntax for this batch file is INSTALL x:, where x is the letter
- echo of your CD-ROM drive. If you already have a directory named TMW on your
- echo c: drive, delete it completely before running this batch file.
-
- :end
- echo.
- echo Thank you for testing THIS MEANS WAR!
-