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.

36 lines
884 B

  1. @echo off
  2. @rem copies all the setup delta dll's into a single directory and
  3. @rem calls deltacat.cmd to create a delta.cat.
  4. SETLOCAL
  5. set TestDeltaDir=%_NTTREE%\testdelta
  6. if not exist %TestDeltaDir% mkdir %TestDeltaDir%
  7. call :CopyRetail crypt32.dll
  8. call :CopyRetail cryptext.dll
  9. call :CopyRetail cryptnet.dll
  10. call :CopyRetail cryptsvc.dll
  11. call :CopyRetail cryptui.dll
  12. call :CopyRetail initpki.dll
  13. call :CopyRetail mscat32.dll
  14. call :CopyRetail mssign32.dll
  15. call :CopyRetail mssip32.dll
  16. call :CopyRetail softpub.dll
  17. call :CopyRetail wintrust.dll
  18. %RazzleToolPath%\deltacat.cmd %TestDeltaDir%
  19. goto :EOF
  20. :CopyRetail
  21. xcopy /D /C %_NTTREE%\%1 %TestDeltaDir%
  22. goto :EOF
  23. ENDLOCAL