home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / comm / cmotion1.zip / DISK1.BAT < prev    next >
DOS Batch File  |  1993-06-03  |  390b  |  26 lines

  1. @echo off
  2. cls
  3. if (%1) == () goto ERROR
  4.  
  5. echo Please ensure disk 1 (formatted and empty) is in drive %1 and
  6. pause
  7.  
  8. cls
  9. echo Creating Disk label
  10. label %1 CYBER_1
  11. echo copying files
  12.  
  13. copy disk.001 %1\disk.id > NUL
  14. copy c-motion.001 %1 > NUL
  15. copy INSTALL.EXE %1 > NUL
  16.  
  17. echo done
  18.  
  19. goto END
  20.  
  21. :ERROR
  22. echo You must supply a disk letter to copy to.
  23. echo e.g. Disk1 a:
  24.  
  25. :END
  26.