home *** CD-ROM | disk | FTP | other *** search
/ Shareware Supreme Volume 6 #1 / swsii.zip / swsii / 071 / PK204C2G.ZIP / UPDATE.BAT < prev    next >
DOS Batch File  |  1993-02-01  |  1KB  |  36 lines

  1. @echo off
  2. echo  
  3. echo This will update the REGISTERED versions of the following programs 
  4. echo from version 2.04c to version 2.04g.  This will not update the
  5. echo Shareware versions of the software.  See the V204g.NEW file for a
  6. echo list of changes in this version.
  7. echo  
  8. echo PKZIP.EXE PKUNZIP.EXE
  9. echo  
  10. echo Please make sure that these files and all the .PAT files from this
  11. echo update are in the current directory.
  12. echo  
  13. echo Press Ctrl Break to abort or any other key to continue.
  14. pause >nul
  15. if not exist pkpatch.exe goto err
  16. if not exist pkzip.exe goto err
  17. if not exist pkunzip.exe goto err
  18. if not exist pkzip.pat goto err
  19. if not exist pkunzip.pat goto err
  20. pkpatch pkzip
  21. if errorlevel 1 pause
  22. pkpatch pkunzip
  23. if errorlevel 1 pause
  24. echo  
  25. echo Done!
  26. goto done
  27. :err
  28. echo  
  29. echo One or more files needed for this update are missing!
  30. echo  
  31. echo Please make sure that all the following files are in the
  32. echo current directory:
  33. echo  
  34. echo PKPATCH.EXE PKZIP.EXE PKUNZIP.EXE PKZIP.PAT PKUNZIP.PAT
  35. :done
  36.