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.

63 lines
2.1 KiB

  1. @rem Copyright (c) 2000 Microsoft Corporation
  2. @echo off
  3. set UPDATE=%1
  4. pushd.
  5. cd %SDXROOT%\drivers\storage\volsnap
  6. echo.
  7. echo Copying files....
  8. echo.
  9. call :update_vss . dirs
  10. call :update_vss bin\i386 tsub.exe
  11. call :update_vss bin\i386 vss_demo.exe
  12. call :update_vss bin\i386 vsstest.exe
  13. call :update_vss bin\i386 vssvc.exe
  14. call :update_vss bin\i386 tsub.pdb
  15. call :update_vss bin\i386 vss_demo.pdb
  16. call :update_vss bin\i386 vsstest.pdb
  17. call :update_vss bin\i386 vssvc.pdb
  18. call :update_vss bin\i386 eventcls.dll
  19. call :update_vss bin\i386 swprv.dll
  20. call :update_vss bin\i386 vss_ps.dll
  21. call :update_vss bin\i386 eventcls.pdb
  22. call :update_vss bin\i386 swprv.pdb
  23. call :update_vss bin\i386 vss_ps.pdb
  24. call :update_vss idl *.*
  25. call :update_vss inc *.*
  26. call :update_vss inc\derived *.h
  27. call :update_vss lib\i386 *.lib
  28. call :update_vss lib *.tlb
  29. call :update_vss modules\comadmin *.*
  30. call :update_vss modules\tracing *.*
  31. call :update_vss modules\event *.*
  32. call :update_vss modules\event\src *.*
  33. call :update_vss modules\prop *.*
  34. call :update_vss modules\sec *.*
  35. call :update_vss modules\sec *.*
  36. call :update_vss modules\vss_ps *.*
  37. call :update_vss modules\vss_uuid *.*
  38. call :update_vss modules\vswriter *.*
  39. call :update_vss tests\tsub *.*
  40. call :update_vss tests\vss_demo *.*
  41. call :update_vss tests\vss_test *.*
  42. call :update_vss tests\vss_test\res *.*
  43. echo.
  44. echo Creating dirs files...
  45. echo.
  46. copy /Y vss\modules\sdkdirs vss_sdk\modules\dirs
  47. copy /Y vss\tests\sdkdirs vss_sdk\tests\dirs
  48. copy /Y scripts\install.cmd vss_sdk\bin\i386
  49. copy /Y scripts\uninst.cmd vss_sdk\bin\i386
  50. copy /Y scripts\vs_install.inf vss_sdk\bin\i386
  51. copy /Y scripts\vssvc.inf vss_sdk\bin\i386
  52. copy /Y scripts\*.reg vss_sdk\bin\i386
  53. copy /Y scripts\volsnap.* vss_sdk\bin\i386
  54. copy /Y utils\vsclrda\obj\i386\vsclrda.exe vss_sdk\bin\i386
  55. copy /Y utils\vsda\obj\i386\vsda.exe vss_sdk\bin\i386
  56. copy /Y scripts\readme.txt vss_sdk\
  57. popd
  58. goto :eof
  59. :update_vss
  60. xcopy vss\%1\%2 vss_sdk\%1\ /I /R /F /Y %UPDATE%