home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / virus / chkup17.zip / CHECKUP.BAT next >
DOS Batch File  |  1988-06-06  |  876b  |  37 lines

  1. REM CHECKUP.BAT
  2. REM Copyright (c) 1988 Richard B. Levin
  3. REM All Rights Reserved
  4. REM 
  5. REM this batch file maintains clean copies of checkup and .xup files
  6. REM
  7. REM rename to autoexec.bat and store on a clean floppy disk
  8. REM (see CHECKUP.DOC for more info on creating clean floppy disks)
  9. REM
  10. REM make sure we're on the root directory of the hard disk
  11. REM (substitute the disk drive letter of your choice)
  12. REM
  13.     C:
  14.     CD \
  15. REM
  16. REM copy checkup and any .xup files from a: drive to hard disk
  17. REM
  18.     COPY A:\CHECKUP.EXE
  19.     COPY A:\*.XUP
  20. REM
  21. REM check files
  22. REM (substitute your list of input files here)
  23. REM
  24.     CHECKUP IBMBIO.COM
  25.     CHECKUP IBMDOS.COM
  26.     CHECKUP COMMAND.COM
  27. REM
  28. REM copy .xup files to the clean floppy disk
  29. REM
  30.     COPY *.XUP A:\
  31. REM
  32. REM delete checkup and .xup files from the hard disk
  33. REM
  34.     DEL CHECKUP.EXE
  35.     DEL *.XUP
  36. REM
  37. REM End of CHECKUP.BAT