home *** CD-ROM | disk | FTP | other *** search
/ Shareware Breakthrough: Entertainment & Education / SharewearBreakthroughEnt_Ed.cdr / educ / kidware / install.bat < prev    next >
DOS Batch File  |  1992-09-11  |  864b  |  25 lines

  1.  
  2. @echo off
  3. cls
  4. echo ╔═══════════════════════════════════════════════════════╗
  5. echo ║                                                       ║
  6. echo ║             WordSmith Document Design Inc.            ║
  7. echo ║                 Kidware Installation                  ║
  8. echo ║                                                       ║
  9. echo ║         This program will create a directory on       ║
  10. echo ║            your C: drive called \KIDWARE              ║
  11. echo ║       All the Kidware files will be copied to it.     ║
  12. echo ║                                                       ║
  13. echo ║                                                       ║
  14. echo ╚═══════════════════════════════════════════════════════╝
  15. echo .
  16. echo Press CTRL C to abort or...
  17. pause
  18. cls
  19. echo Copying Kidware files...
  20. md c:\kidware
  21. copy *.* c:\kidware
  22. cls
  23. echo Done...
  24.  
  25.