home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo This program creates a directory called "DAYMARE2" on drive C.
- echo The program then copys the files into that directory.
- pause
- md c:\daymare2
- copy *.dat c:\daymare2
- copy *.doc c:\daymare2
- copy *.exe c:\daymare2
- c:
- cd c:\daymare2
- echo Documentation is in a file called "README.DOC".
- echo To start the game type in "DAYMARE2" and press the enter key.
- @echo on
-