home *** CD-ROM | disk | FTP | other *** search
/ Network Support Encyclopedia 96-1 / novell-nsepro-1996-1-cd2.iso / download / netware / l11u05.exe / VXDFIX.PAT < prev    next >
Text File  |  1993-03-03  |  1KB  |  31 lines

  1. TARGET=C:\NWLITE\SERVER.EXE
  2. LIST
  3.     print "VXDFIX.PAT - NetWare Lite v1.1 Server windows VxD fix patch version 2.0.\n"
  4. VERIFY
  5.     va = search ( 66 83 3D CC 00 00 00 01 0F 85
  6.                   C2 00 00 00 EB 04 D6 00 00 00
  7.                   B8 2A 00 00 00 checksum 5F0 )
  8.     if (va=A069)  then
  9.         print "  $TARGET already contains patch VXDFIX.PAT.\n"
  10.         stop
  11.     else
  12.         print "  $TARGET does not contain patch VXDFIX.PAT.\n"
  13.     endif
  14. APPLY
  15.     print "  Applying patch VXDFIX.PAT to $TARGET...\n"
  16.     vc = search ( 66 83 3D CC 00 00 00 01 0F 85
  17.                   C2 00 00 00 FF 05 D6 00 00 00
  18.                   B8 2A 00 00 00 checksum 605 )
  19.  
  20.     if (vc=A069) then
  21.         patch A077 ( EB 04 checksum EF )
  22.         write
  23.         print "  $TARGET now contains patch VXDFIX.PAT.\n"
  24.         stop
  25.     else
  26.         print "  Could not find pattern indicating that $TARGET\n"
  27.         print "  needs this patch.  Make sure you are using this\n"
  28.         print "  patch with NetWare Lite SERVER.EXE, version 1.1 \n"
  29.         stop
  30.     endif
  31.