home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / t / tmstax26.zip / TSDEMO.EXE / KILLDEMO.BAT next >
DOS Batch File  |  1991-02-19  |  1KB  |  36 lines

  1. @echo off
  2. REM **************************************************************************
  3. REM *  BATCH FILE TO REMOVE ALL TIMESTAX DATA FILES 
  4. REM **************************************************************************
  5.  
  6. cls
  7. echo ╔══════════════════════════════════════════════════════════════════════════╗
  8. echo ║ TIMESTAX UTILITY - REMOVE DEMO FILES                                     ║
  9. echo ╚══════════════════════════════════════════════════════════════════════════╝
  10.  
  11.  
  12. echo This batch file [ WILL ERASE ALL DATA ] associated with your TimeStax system!
  13.  
  14. echo You would normally use this to remove all the DEMO files which were 
  15. echo originally created during installation.
  16.  
  17. echo IF THIS IS NOT WHAT YOU WANT TO DO, PRESS CTRL-C NOW!
  18.  
  19.  
  20. echo Otherwise, press any key to begin deleting files...
  21. pause >NUL
  22.  
  23. del timestax.dat
  24. del timestax.tbl
  25. del *.nts
  26. del *.ndx
  27. del *.rpt
  28. if exist lastemp.$$$ del lastemp.$$$
  29.  
  30. echo
  31.  
  32. DATA FILES HAVE BEEN REMOVED.  
  33. echo The next time you start timestax you will be prompted to fill in
  34. echo new activity tables and to create a new TimeStax database.
  35.  
  36.