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.

61 lines
1.9 KiB

  1. if "%1"=="" goto USAGE
  2. @echo off
  3. set DROPS=\\DUSER\DROPS
  4. mkdir %DROPS%\%1
  5. mkdir %DROPS%\%1\Debug
  6. mkdir %DROPS%\%1\IceCAP
  7. mkdir %DROPS%\%1\inc
  8. mkdir %DROPS%\%1\Release
  9. mkdir %DROPS%\%1\Resources
  10. copy Debug\DUser.dll %DROPS%\%1\Debug
  11. copy Debug\DUser.lib %DROPS%\%1\Debug
  12. copy Debug\DUser.pdb %DROPS%\%1\Debug
  13. copy Debug\GadgetSpy.exe %DROPS%\%1\Debug
  14. copy Debug\GadgetSpy.pdb %DROPS%\%1\Debug
  15. copy Debug\Gravity.exe %DROPS%\%1\Debug
  16. copy Debug\Gravity.pdb %DROPS%\%1\Debug
  17. copy Debug\TestCtrl.exe %DROPS%\%1\Debug
  18. copy Debug\TestCtrl.pdb %DROPS%\%1\Debug
  19. copy Debug\TestSimple.exe %DROPS%\%1\Debug
  20. copy Debug\TestSimple.pdb %DROPS%\%1\Debug
  21. copy IceCAP\DUser.dll %DROPS%\%1\IceCAP
  22. copy IceCAP\DUser.lib %DROPS%\%1\IceCAP
  23. copy IceCAP\DUser.pdb %DROPS%\%1\IceCAP
  24. copy IceCAP\GadgetSpy.exe %DROPS%\%1\IceCAP
  25. copy IceCAP\GadgetSpy.pdb %DROPS%\%1\IceCAP
  26. copy IceCAP\Gravity.exe %DROPS%\%1\IceCAP
  27. copy IceCAP\Gravity.pdb %DROPS%\%1\IceCAP
  28. copy IceCAP\TestCtrl.exe %DROPS%\%1\IceCAP
  29. copy IceCAP\TestCtrl.pdb %DROPS%\%1\IceCAP
  30. copy IceCAP\TestSimple.exe %DROPS%\%1\IceCAP
  31. copy IceCAP\TestSimple.pdb %DROPS%\%1\IceCAP
  32. copy Release\DUser.dll %DROPS%\%1\Release
  33. copy Release\DUser.lib %DROPS%\%1\Release
  34. copy Release\GadgetSpy.exe %DROPS%\%1\Release
  35. copy Release\Gravity.exe %DROPS%\%1\Release
  36. copy Release\TestCtrl.exe %DROPS%\%1\Release
  37. copy Release\TestSimple.exe %DROPS%\%1\Release
  38. copy ..\..\..\public\internal\windows\inc\DUser\DUser* %DROPS%\%1\inc
  39. copy Resources\AddressBackground.bmp %DROPS%\%1\Resources
  40. copy Resources\AddressBackgroundLight.bmp %DROPS%\%1\Resources
  41. copy Resources\BlueFolder.bmp %DROPS%\%1\Resources
  42. copy Resources\GraniteBackground.bmp %DROPS%\%1\Resources
  43. copy Resources\ShellToolbar.bmp %DROPS%\%1\Resources
  44. copy Resources\Text.bmp %DROPS%\%1\Resources
  45. goto END
  46. :USAGE
  47. echo Usage: MakeDrop Date
  48. echo Example: MakeDrop 2000-02-14
  49. :END