Leaked source code of windows server 2003
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.

48 lines
1015 B

  1. @rem Generate SCOMP on each directory of interest in project.
  2. @rem execute from \nt\private\net\svcimgs\ntrepl
  3. set LIST=
  4. cd \nt\private\net\svcimgs\ntrepl
  5. for %%x in (ntrepl) do (
  6. set ofile=%%x.cmp
  7. set LIST=!LIST! !ofile!
  8. status -xv > !ofile!
  9. scomp -df *.* >> !ofile!
  10. )
  11. for %%x in (repl util inc frs ntfrsapi setup test main ntfrsupg ntfrsutl perfmon perfdll) do (
  12. cd %%x
  13. set ofile=%%x.cmp
  14. set LIST=!LIST! !ofile!
  15. status -xv > ..\!ofile!
  16. scomp -df *.* >> ..\!ofile!
  17. cd ..
  18. )
  19. cd test
  20. for %%x in (dstree frs privs) do (
  21. cd %%x
  22. set ofile=test_%%x.cmp
  23. set LIST=!LIST! !ofile!
  24. status -xv > ..\..\!ofile!
  25. scomp -df *.* >> ..\..\!ofile!
  26. cd ..
  27. )
  28. cd ..
  29. cd setup
  30. for %%x in (registry service) do (
  31. cd %%x
  32. set ofile=setup_%%x.cmp
  33. set LIST=!LIST! !ofile!
  34. status -xv > ..\..\!ofile!
  35. scomp -df *.* >> ..\..\!ofile!
  36. cd ..
  37. )
  38. cd ..
  39. echo start list !LIST!
  40. start list !LIST!