Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.1 KiB

  1. if "%1" == "ntsdexts" ( goto :ntsdexts ) else if "%1" == "kdex2x86" ( goto :kdex2x86 ) else if "%1" == "kdexts"( goto :kdexts )
  2. :ntsdexts
  3. REM Get nt4 fre ntsdexts
  4. cd i386\nt4fre
  5. sd edit ntsdexts*
  6. copy \\hx86fix2\nt40bin\nt\system32\ntsdexts.dll
  7. copy \\hx86fix2\nt40bin\nt\Symbols\dll\ntsdexts.dbg
  8. build /c /Z
  9. cd ..\..
  10. REM Get nt4 chk ntsdexts
  11. cd i386\nt4chk
  12. sd edit ntsdexts*
  13. copy \\hx86chk\nt40bin\nt\system32\ntsdexts.dll
  14. copy \\hx86chk\nt40bin\nt\Symbols\dll\ntsdexts.dbg
  15. build /c /Z
  16. cd ..\..
  17. goto :end
  18. :kdex2x86
  19. REM Get Nt4 kdex2x86.dll
  20. cd i386\nt4fre
  21. sd edit kdex2*
  22. copy \\kktoolsproject1\release\phase3.qfe\bld2193.18\x86\kdext\4.0\kdex2x86.dll
  23. copy \\kktoolsproject1\release\phase3.qfe\bld2193.18\x86\symbols\kdext\dll\4.0\kdex2x86.pdb
  24. build /c /Z
  25. cd ..\..
  26. goto :end
  27. :kdexts
  28. REM Get nt4 fre i386 kdexts
  29. cd i386\nt4fre
  30. sd edit kdext*
  31. copy \\hx86fix2\nt40bin\nt\mstools\kdextx86.dll
  32. copy \\hx86fix2\nt40bin\nt\Symbols\dll\kdextx86.dbg
  33. build /c /Z
  34. cd ..\..
  35. REM Get nt4 chk i386 kdexts
  36. cd i386\nt4chk
  37. sd edit kdext*
  38. copy \\hx86chk\nt40bin\nt\mstools\kdextx86.dll
  39. copy \\hx86chk\nt40bin\nt\Symbols\dll\kdextx86.dbg
  40. build /c /Z
  41. cd ..\..
  42. :end