home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC/CD Gamer UK 14
/
PCGAMER14.bin
/
tmw
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1995-09-26
|
1KB
|
43 lines
@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:\pcg
MD c:\pcg\TMW
MD c:\pcg\TMW\MAPS
MD c:\pcg\TMW\MAPS\ART
MD c:\pcg\TMW\MAPS\SFX
MD c:\pcg\TMW\MAPS\MUSIC
echo Copying program files...
COPY %1\*.* c:\pcg\tmw
echo Copying data files...
COPY %1\MAPS\*.* c:\pcg\tmw\MAPS
echo Copying art files...
COPY %1\MAPS\ART\*.* c:\pcg\tmw\MAPS\ART
echo Copying sound files...
COPY %1\MAPS\SFX\*.* c:\pcg\tmw\MAPS\SFX
COPY %1\MAPS\MUSIC\COVER???.RAW c:\pcg\tmw\MAPS\MUSIC
echo All done!
echo.
echo You may need to copy the file CTL3DV2.DLL to your Windows SYSTEM
echo directory. I 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!