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.

81 lines
1.8 KiB

  1. if "%1" == "ntsdexts" (
  2. goto :ntsdexts
  3. ) else if "%1" == "scsikd" (
  4. goto :scsikd
  5. ) else if "%1" == "kdex2x86" (
  6. goto :kdex2x86
  7. ) else if "%1" == "kdexts" (
  8. goto :kdexts
  9. )
  10. :ntsdexts
  11. REM Get w2k fre i386 ntsdexts
  12. cd i386\w2kfre
  13. sd edit ntsdexts*
  14. copy \\winsefre\nt5src\private\sdktools\ntsdexts\obj\i386\ntsdexts.dll
  15. copy \\winsefre\nt5src\private\sdktools\ntsdexts\obj\i386\ntsdexts.pdb
  16. build /c /Z
  17. cd ..\..
  18. REM Get w2k chk i386 ntsdexts
  19. cd i386\w2kchk
  20. sd edit ntsdexts*
  21. copy \\winsechk\nt50src\private\sdktools\ntsdexts\obj\i386\ntsdexts.dll
  22. copy \\winsechk\nt50src\private\sdktools\ntsdexts\obj\i386\ntsdexts.pdb
  23. build /c /Z
  24. build /c /Z
  25. cd ..\..
  26. goto :end
  27. :scsikd
  28. REM Get w2k fre i386 scsikd
  29. cd i386\w2kfre
  30. sd edit scsikd*
  31. copy \\winsefre\nt50bin\mstools\scsikd.dll
  32. copy \\winsefre\nt50bin\Symbols\mstools\dll\scsikd.pdb
  33. build /c /Z
  34. cd ..\..
  35. REM Get w2k chk i386 scsikd
  36. cd i386\w2kchk
  37. sd edit scsikd*
  38. copy \\winsechk\nt50bin\mstools\scsikd.dll
  39. copy \\winsechk\nt50bin\Symbols\mstools\dll\scsikd.pdb
  40. build /c /Z
  41. cd ..\..
  42. goto :end
  43. :kdex2x86
  44. REM Get w200 kdex2x86.dll
  45. cd i386\w2kfre
  46. sd edit kdex2*
  47. copy \\kktoolsproject1\release\phase3.qfe\bld2193.18\x86\kdext\5.0\kdex2x86.dll
  48. copy \\kktoolsproject1\release\phase3.qfe\bld2193.18\x86\symbols\kdext\dll\5.0\kdex2x86.pdb
  49. build /c /Z
  50. cd ..\..
  51. goto :end
  52. :kdexts
  53. REM Get w2k fre i386 kdexts
  54. cd i386\w2kfre
  55. sd edit kdext*
  56. copy \\winsefre\nt5src\private\sdktools\kdexts\p_i386\obj\i386\kdextx86.dll
  57. copy \\winsefre\nt5src\private\sdktools\kdexts\p_i386\obj\i386\kdextx86.pdb
  58. build /c /Z
  59. cd ..\..
  60. REM Get w2k chk i386 kdexts
  61. cd i386\w2kchk
  62. sd edit kdext*
  63. copy \\winsechk\nt50src\private\sdktools\kdexts\p_i386\obj\i386\kdextx86.dll
  64. copy \\winsechk\nt50src\private\sdktools\kdexts\p_i386\obj\i386\kdextx86.pdb
  65. build /c /Z
  66. cd ..\..
  67. goto :end
  68. :end