home *** CD-ROM | disk | FTP | other *** search
/ Network Support Encyclopedia 96-1 / novell-nsepro-1996-1-cd2.iso / download / netware / l11f01.exe / FIELDTST / STACKFIX.PAT < prev    next >
Text File  |  1993-03-30  |  973b  |  27 lines

  1. TARGET=C:\NWLITE\SERVER.EXE
  2. LIST
  3.     print "STACKFIX.PAT - NetWare Lite Server stack initialization fix patch,\n"
  4.     print "               French version.\n"
  5. VERIFY
  6.     va = search ( 90 90 90 90 90 90 90 E8 80 00 checksum 558 )
  7.     if va=3095 then
  8.         print "  $TARGET already contains patch STACKFIX.PAT.\n"
  9.         stop
  10.     else
  11.         print "  $TARGET does not contain patch STACKFIX.PAT.\n"
  12.     endif
  13. APPLY
  14.     print "  Applying patch STACKFIX.PAT to $TARGET...\n"
  15.     vb = search ( FA 1E 17 BC 84 14 FB E8 80 00 checksum 4E6 )
  16.     if vb=3095 then
  17.         patch 3095 ( 90 90 90 90 90 90 90 checksum 3F0 )
  18.         write
  19.         print "  $TARGET now contains patch STACKFIX.PAT.\n"
  20.         stop
  21.     else
  22.         print "  Could not find pattern indicating that $TARGET\n"
  23.         print "  needs this patch.  Make sure you are using this\n"
  24.         print "  patch with NetWare Lite SERVER.EXE, French version 1.1.\n"
  25.         stop
  26.     endif
  27.