home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / database / p3003.zip / P3003.BAT < prev    next >
DOS Batch File  |  1993-06-09  |  617b  |  24 lines

  1. @ECHO OFF
  2. IF "%1"=="" GOTO SYNTAX:
  3. GOTO OK:
  4. :OK
  5. ECHO *
  6. ECHO *  Applying patch to upgrade version 3002 to revision 3003
  7. ECHO *
  8. PATCH %1 3003.RTP >Presults.txt
  9. ECHO *
  10. ECHO *  Please view the file Presults.txt for a report on the Patch application
  11. ECHO *
  12. GOTO EXIT
  13. :SYNTAX
  14. ECHO *
  15. ECHO          Syntax to apply the patch is PATCH [DRIVE:\DIRECTORY]
  16. ECHO *
  17. ECHO             DRIVE:\DIRECTORY is the name of the path
  18. ECHO             where Clarion 3.0 is installed
  19. ECHO *
  20. ECHO          For example if Clarion 3.0 is installed in C:\Clarion3
  21. ECHO          you would type PATCH C:\Clarion3
  22. ECHO *
  23. :EXIT
  24.