home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / HARDDISK / BK.ZIP / EPOCH.LOG < prev    next >
Encoding:
Text File  |  1986-05-30  |  768 b   |  33 lines

  1. echo off
  2. cls
  3. echo **** EPOCH DUMP PROCEDURE V1.00 ****
  4. if .%1==. goto novol
  5. cd \
  6. type c:\bat\edate
  7. echo Checking disk integrity. . .
  8. chkdsk/f
  9. echo Ready for backup to floppy disks. . .
  10. pause
  11. backup c: a:/s
  12. if errorlevel 4 goto berror
  13. if errorlevel 3 goto killed
  14. if errorlevel 1 goto nofiles
  15. echo Epoch Dump Volume %1 done on:  > \bat\edate
  16. gtod >> c:\bat\edate
  17. gtod >> c:\bat\edate.log
  18. goto done
  19. :novol
  20. echo An Epoch Dump Volume letter must be supplied
  21. echo ** Aborting procedure **
  22. goto done
  23. :nofiles
  24. echo No files found to backup.  Date logs not updated.
  25. goto done
  26. :killed
  27. echo User termination.  Date logs not updated.
  28. goto done
  29. :berror
  30. echo *** Error Termination ***   Date logs not updated
  31. :done
  32. echo on
  33.