home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / anti141.zip / CHK_ADS2.BAT < prev    next >
DOS Batch File  |  1996-01-07  |  683b  |  20 lines

  1. REM  This batch file performs the actual archive BBS ad processing.  It is
  2. REM  designed for ZIP files only, but can easily be adapted for other
  3. REM  archive formats by changing the PKUNZIP and PKZIP command lines.
  4. REM
  5. REM  Note that this batch file assumes that AntiAd is in the path D:\ANTIAD\
  6. REM  (capitalized for easy location).  You will have to change these paths
  7. REM  to match your setup.
  8. REM
  9. @Echo off
  10. cls
  11. mkdir testing
  12. chdir testing
  13. pkunzip -o ..\%1
  14. D:\ANTIAD\antiad -CD:\ANTIAD\aa_86.cfg -LD:\ANTIAD\ad.lst
  15. if exist D:\ANTIAD\ad.lst pkzip -d ..\%1 @D:\ANTIAD\ad.lst
  16. if exist D:\ANTIAD\ad.lst del D:\ANTIAD\ad.lst
  17. echo y | del *.*
  18. chdir ..
  19. rmdir testing
  20.