Windows NT 4.0 source code leak
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.

33 lines
735 B

4 years ago
  1. @echo off
  2. if %PROCESSOR_ARCHITECTURE% == x86 goto i386
  3. if %PROCESSOR_ARCHITECTURE% == MIPS goto mips
  4. if %PROCESSOR_ARCHITECTURE% == ALPHA goto alpha
  5. if %PROCESSOR_ARCHITECTURE% == PPC goto ppc
  6. :i386
  7. set _NT386TREE=%_ntdrive%\nt\private\sdktools\apimon\bin\i386
  8. set _NT386BOOT=
  9. path=%_NT386TREE%\idw;%path%
  10. goto endit
  11. :mips
  12. set _NTMIPSTREE=%_ntdrive%\nt\private\sdktools\apimon\bin\mips
  13. set _NTMIPSBOOT=
  14. path=%_NTMIPSTREE%\idw;%path%
  15. goto endit
  16. :alpha
  17. set _NTALPHATREE=%_ntdrive%\nt\private\sdktools\apimon\bin\alpha
  18. set _NTALPHABOOT=
  19. path=%_NTALPHATREE%\idw;%path%
  20. goto endit
  21. :ppc
  22. set _NTPPCTREE=%_ntdrive%\nt\private\sdktools\apimon\bin\ppc
  23. set _NTPPCBOOT=
  24. path=%_NTPPCTREE%\idw;%path%
  25. goto endit
  26. :endit
  27. title ApiMon Build