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.

50 lines
1.2 KiB

  1. @echo off
  2. rem ***********************************************************************
  3. rem
  4. rem VC++ build of admin tools. Be sure that nt\public\sdk\inc is part of
  5. rem the %INCLUDE% path before running this.
  6. rem
  7. rem ***********************************************************************
  8. :main
  9. cd comprop
  10. nmake %1 %2 %3 %4 /f iisui.mak
  11. if errorlevel 1 goto error
  12. cd ..
  13. cd fscfg
  14. nmake %1 %2 %3 %4 /f fscfg.mak
  15. if errorlevel 1 goto error
  16. cd ..
  17. cd w3scfg
  18. nmake %1 %2 %3 %4 /f w3scfg.mak
  19. if errorlevel 1 goto error
  20. cd ..
  21. cd mmc
  22. nmake %1 %2 %3 %4 /f minetmgr.mak
  23. if errorlevel 1 goto error
  24. cd ..
  25. goto success
  26. :error
  27. beep
  28. echo.
  29. echo ======================================================================
  30. echo.
  31. echo Error!
  32. beep
  33. echo.
  34. echo ======================================================================
  35. beep
  36. goto done
  37. :success
  38. echo.
  39. echo ======================================================================
  40. echo.
  41. echo Successfully Completed
  42. echo.
  43. echo ======================================================================
  44. goto done
  45. :done