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.

32 lines
779 B

  1. @echo off
  2. if %2. == . goto usage
  3. echo Running obj\%Cpu%\file %1 %2
  4. obj\%Cpu%\file %1 %2
  5. echo Running obj\%Cpu%\file %1 %2 /h
  6. obj\%Cpu%\file %1 %2 /h
  7. echo Running obj\%Cpu%\file %1 %2 /C
  8. obj\%Cpu%\file %1 %2 /C
  9. echo Running obj\%Cpu%\file %1 %2 /h /c
  10. obj\%Cpu%\file %1 %2 /h /c
  11. echo Running obj\%Cpu%\file %1 %2 /O
  12. obj\%Cpu%\file %1 %2 /O
  13. echo Running obj\%Cpu%\file %1 %2 /h /o
  14. obj\%Cpu%\file %1 %2 /h /o
  15. echo Running obj\%Cpu%\file %1 %2 /I
  16. obj\%Cpu%\file %1 %2 /I
  17. echo Running obj\%Cpu%\file %1 %2 /h /I
  18. obj\%Cpu%\file %1 %2 /h /I
  19. echo Running obj\%Cpu%\file %1 %2 /C /O /P
  20. obj\%Cpu%\file %1 %2 /C /O /P
  21. echo Running obj\%Cpu%\file %1 %2 /C /O /P /H
  22. obj\%Cpu%\file %1 %2 /C /O /P /H
  23. goto done
  24. :usage
  25. echo runall directory_root user
  26. echo ie: runall d:\temp ntds\macm
  27. :done