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.

43 lines
1.6 KiB

  1. rem @ECHO OFF
  2. REM Allows the appvpkg.exe to be built, but not as part of the postbuild process.
  3. REM This file assumes that all of the necessary binaries have been built and
  4. REM binplaced to their correct locations.
  5. REM rparsons - 14 Jan 02
  6. @echo Building Application Verifier package...
  7. del /q %_NTPostBld%\appverif\appvpkg.exe
  8. del /q %_NTPostBld%\appverif\delta_xp.cat
  9. del /q %_NTPostBld%\appverif\delta_xp.cdf
  10. del /q %_NTPostBld%\appverif\delta_net.cat
  11. del /q %_NTPostBld%\appverif\delta_net.cdf
  12. mkdir %_NTPostBld%\appverif\temp
  13. copy /y %_NTPostBld%\appverif\acverfyr.dll %_NTPostBld%\appverif\temp
  14. copy /y %_NTPostBld%\appverif\appverif.exe %_NTPostBld%\appverif\temp
  15. copy /y %_NTPostBld%\appverif\appverif.chm %_NTPostBld%\appverif\temp
  16. REM
  17. REM Generate the catalog file to be used for Windows XP.
  18. REM
  19. call deltacat.cmd -5.1 %_NTPostBld%\appverif\temp
  20. copy /y %_NTPostBld%\appverif\temp\delta.cat %_NTPostBld%\appverif\delta_xp.cat
  21. copy /y %_NTPostBld%\appverif\temp\delta.cdf %_NTPostBld%\appverif\delta_xp.cdf
  22. del /q %_NTPostBld%\appverif\temp\delta.cat
  23. del /q %_NTPostBld%\appverif\temp\delta.cdf
  24. REM
  25. REM Generate the catalog file to be used for .NET Server.
  26. REM
  27. call deltacat.cmd -5.2 %_NTPostBld%\appverif\temp
  28. copy /y %_NTPostBld%\appverif\temp\delta.cat %_NTPostBld%\appverif\delta_net.cat
  29. copy /y %_NTPostBld%\appverif\temp\delta.cdf %_NTPostBld%\appverif\delta_net.cdf
  30. rd /s /q %_NTPostBld%\appverif\temp
  31. pushd %_NTPostBld%\appverif
  32. %SDXROOT%\windows\appcompat\Package\bin\iexpress /M /N %_NTPostBld%\appverif\appvpkg.sed
  33. popd