home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / l / l11u01.zip / CLOSEFIL.PAT next >
Text File  |  1992-12-01  |  1KB  |  30 lines

  1. TARGET=C:\NWLITE\SERVER.EXE
  2. LIST
  3.     print "CLOSEFIL.PAT - NetWare Lite v1.1 Server close file handles fix patch.\n"
  4. VERIFY
  5.     va = search ( B9 20 00 B8 00 00 80 3F 00 75 
  6.                   07 E9 BC 37 E2 F6 checksum 680 )
  7.     if va=1FD1 then
  8.         print "  $TARGET already contains patch CLOSEFIL.PAT.\n"
  9.         stop
  10.     else
  11.         print "  $TARGET does not contain patch CLOSEFIL.PAT.\n"
  12.     endif
  13. APPLY
  14.     print "  Applying patch CLOSEFIL.PAT to $TARGET...\n"
  15.     vb = search ( B9 08 00 B8 00 00 80 3F 00 75 
  16.                   07 05 08 00 E2 F6 checksum 499 )
  17.     if vb=1FD1 then
  18.         patch 1FD2 ( 20 checksum 20 )
  19.         patch 1FDC ( E9 BC 37 checksum 1DC )
  20.         patch 579B ( 05 08 00 43 E9 3D C8 checksum 23E )
  21.         write
  22.         print "  $TARGET now contains patch CLOSEFIL.PAT.\n"
  23.         stop
  24.     else
  25.         print "  Could not find pattern indicating that $TARGET\n"
  26.         print "  needs this patch.  Make sure you are using this\n"
  27.         print "  patch with NetWare Lite SERVER.EXE, version 1.1 \n"
  28.         stop
  29.     endif
  30.