home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 13 / CD_ASCQ_13_0494.iso / news / 2417 / uc2 / u2_flush.bat < prev    next >
DOS Batch File  |  1993-12-31  |  814b  |  37 lines

  1. @echo off
  2. echo off
  3. rem (C) Copyright 1993, Ad Infinitum Programs, all rights reserved
  4.  
  5. rem This batch file is called by UC for flushing the harddisk cache
  6.  
  7.  
  8. rem Notify the user
  9.  
  10. echo --------------------------------------------------------------------
  11. echo U2_FLUSH: Calling multiple disk-cache (delayed write) flush commands
  12. echo           (errors might occur for not installed caching programs)
  13.  
  14.  
  15. echo Flushing Microsoft SmartDrive (if installed)
  16.  
  17.    smartdrv /c >nul
  18.  
  19.  
  20. echo Flushing Norton Cache (if installed)
  21.  
  22.    ncache /dump > nul
  23.  
  24.  
  25. echo Flushing ADCache (if installed)
  26.  
  27.    adcache -f > nul
  28.  
  29.  
  30. echo Flushing Symantec PC-CACHE (if installed)
  31.  
  32.    pc-cache /flush > nul
  33.  
  34.  
  35. echo U2_FLUSH: Task completed
  36. echo --------------------------------------------------------------------
  37.