home *** CD-ROM | disk | FTP | other *** search
/ Current Shareware 1994 January / SHAR194.ISO / screenut / mapper36.zip / REQD.BAT < prev    next >
DOS Batch File  |  1992-11-13  |  624b  |  24 lines

  1. @ECHO OFF
  2. CLS
  3. ECHO This program will copy all of the files required for Micro-Mapper
  4. ECHO from the source %1 to the destination %2.
  5. ECHO If you did not enter the source or destination correctly, press
  6. ECHO CTRL and BREAK(pause) at the same time to halt execution.
  7. PAUSE
  8. @ECHO ON
  9. COPY %1\MAPPER.COM %2
  10. COPY %1\MAPPER.DAT %2
  11. COPY %1\MAPPER.DOC %2
  12. COPY %1\MAPPER.CFG %2
  13. COPY %1\DEF.MNU %2
  14. COPY %1\TBL.MEM %2
  15. COPY %1\COLOR1.MEM %2
  16. COPY %1\COLOR2.MEM %2
  17. COPY %1\COLOR3.COM %2
  18. COPY %1\DANSI.COM %2
  19. COPY %1\DASCII.COM %2
  20. COPY %1\DMEM.COM %2
  21. COPY %1\DWCAT3.COM %2
  22. COPY %1\V.COM %2
  23. ECHO The copy is complete.
  24.