home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 December / simtel1292_SIMTEL_1292_Walnut_Creek.iso / msdos / pcmag / vol7n14.arc / LOAD.BAT < prev    next >
DOS Batch File  |  1988-06-30  |  255b  |  13 lines

  1. :START
  2. ECHO Place disk to be copied in drive A:
  3. PAUSE
  4. DSKREADY A:
  5. IF NOT ERRORLEVEL 1 GOTO DOCOPY
  6. ECHO The drive is not responding.
  7. ECHO Check that the disk is inserted
  8. ECHO and the drive door is closed.
  9. PAUSE
  10. GOTO START
  11. :DOCOPY
  12. COPY A:*.* C:
  13.