home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / business / incontrl.zip / SALE-X60.EXE / PROSPECT / CRISIS-H.BAT < prev    next >
DOS Batch File  |  1992-03-06  |  1KB  |  39 lines

  1. ECHO OFF
  2. CLS
  3. ECHO This crisis procedure will backup all data, onto this hard drive.
  4. ECHO  
  5. ECHO You use this procdure if the data files are so large that they will  
  6. ECHO not fit onto the floppy disk using the standard backup in the program.
  7. ECHO  
  8. ECHO This procedure will compress the data files and store them in this
  9. ECHO subdirectory under the entry:
  10. ECHO  
  11. ECHO                                HARD-H1.LZH
  12. ECHO  
  13. ECHO Additionally, it keeps the last two backups in this form:
  14. ECHO  
  15. ECHO                                HARD-H2.LZH      [most recent]
  16. ECHO                                HARD-H3.LZH      [oldest backup]
  17. ECHO  
  18. ECHO  If you want to stop this procedure now, enter a
  19. ECHO  CONTROL-C.  Enter any other key to continue.
  20. ECHO  
  21. PAUSE
  22. CLS
  23. ECHO  
  24. COPY HARD-H2.LZH HARD-H3.LZH >TMP
  25. COPY HARD-H1.LZH HARD-H2.LZH >TMP
  26. ZDEL /N /K HARD-H1.LZH
  27. LHARC A HARD-H1.LZH *.DB?
  28. CLS
  29. IF NOT EXIST HARD-H1.LZH GOTO WARN
  30. GOTO END
  31. :WARN
  32. CLS
  33. ECHO For some reason, HARD-H1.LZH will not copy to your hard drive.
  34. ECHO Check to see if it is full.
  35. :END
  36. ECHO  
  37. ECHO Finished!
  38. ECHO  
  39.