home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
- CLS
- ECHO This program will copy all of the files required for Micro-Mapper
- ECHO from the source %1 to the destination %2.
- ECHO If you did not enter the source or destination correctly, press
- ECHO CTRL and BREAK(pause) at the same time to halt execution.
- PAUSE
- @ECHO ON
- COPY %1\MAPPER.COM %2
- COPY %1\MAPPER.MNU %2
- COPY %1\MAPPER.CFG %2
- COPY %1\TBL.MEM %2
- COPY %1\COLOR1.MEM %2
- COPY %1\COLOR2.MEM %2
- COPY %1\DANSI.COM %2
- COPY %1\DASCII.COM %2
- COPY %1\DMEM.COM %2
- COPY %1\DWCAT3.COM %2
- ECHO The copy is complete.