home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / network / nwl004.zip / 5E03.PAT < prev    next >
Text File  |  1991-11-26  |  877b  |  26 lines

  1. TARGET=C:\NWLITE\CLIENT.EXE
  2. LIST
  3.     print "5E03.PAT - NetWare Lite Client DOS 5E03 invalid parm patch.\n"
  4. VERIFY
  5.     va = search ( 57 00 F9 C3 8B 5F 06 F8 C3 A1 checksum 55F )
  6.     if va=1AD8 then
  7.         print "  $TARGET already contains patch 5E03.PAT.\n"
  8.         stop
  9.     else
  10.         print "  $TARGET does not contain patch 5E03.PAT.\n"
  11.     endif
  12. APPLY
  13.     print "  Applying patch 5E03.PAT to $TARGET...\n"
  14.     vb = search ( 01 00 F9 C3 8B 5F 06 F8 C3 A1 checksum 509 )
  15.     if vb=1AD8 then
  16.         patch 1AD8 ( 57 checksum 57 )
  17.         write
  18.         print "  $TARGET now contains patch 5E03.PAT.\n"
  19.         stop
  20.     else
  21.         print "  Could not find pattern indicating that $TARGET\n"
  22.         print "  needs this patch.  Make sure you are using this\n"
  23.         print "  patch with NetWare Lite CLIENT.EXE, version 1.0.\n"
  24.         stop
  25.     endif
  26.