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.

57 lines
1.9 KiB

  1. @echo off
  2. Rem #########################################################################
  3. Rem ������ ���ø� �� ������ ���� ���� ���θ� �����մϴ�.
  4. Rem
  5. SET UserTemplatesPath=#USERTEMPLATESPATH#
  6. SET UserCustomDicPath=#USERCUSTOMDICPATH#
  7. SET UserCustomDicFile=%UserCustomDicPath%\#CUSTOMDICNAME#
  8. SET UserAppTemplatesPath=%UserTemplatesPath%\#APPPATHNAME#
  9. SET UserAppWebTemplatesPath=%UserTemplatesPath%\#APPWEBPATHNAME#
  10. Rem #########################################################################
  11. Rem ���� ���ø� �� ������ ���� ���� ���θ� �����մϴ�.
  12. Rem
  13. SET CommonTemplatesPath=#COMMONTEMPLATESPATH#
  14. SET CommonCustomDicPath=#COMMONCUSTOMDICPATH#
  15. SET CommonCustomDicFile=%CommonCustomDicPath%\#CUSTOMDICNAME#
  16. SET CommonAppTemplatesPath=%CommonTemplatesPath%\#APPPATHNAME#
  17. SET CommonAppWebTemplatesPath=%CommonTemplatesPath%\#APPWEBPATHNAME#
  18. Rem #########################################################################
  19. Rem ������ Ȩ �����͸��� ���� ���α׷� ������ �����͸� ����
  20. Rem �����͸��� �����ϴ�.
  21. Rem
  22. call TsMkUDir "%UserTemplatesPath%"
  23. call TsMkUDir "%UserCustomDicPath%"
  24. call TsMkUDir "%RootDrive%\%MY_DOCUMENTS%"
  25. Rem #########################################################################
  26. Rem
  27. Rem Custom.dic ������ ������ �����͸��� �����մϴ�.
  28. Rem
  29. If Exist "%UserCustomDicFile%" Goto Skip1
  30. If Not Exist "%CommonCustomDicFile%" Goto Skip1
  31. Copy "%CommonCustomDicFile%" "%UserCustomDicFile%" >Nul: 2>&1
  32. :Skip1
  33. Rem #########################################################################
  34. Rem
  35. Rem ���ø��� ������ ���ø� �������� �����մϴ�.
  36. Rem
  37. If Exist "%UserAppTemplatesPath%" Goto Skip2
  38. If Not Exist "%CommonAppTemplatesPath%" Goto Skip2
  39. xcopy "%CommonAppTemplatesPath%" "%UserAppTemplatesPath%" /E /I >Nul: 2>&1
  40. :Skip2
  41. if Exist "%UserAppWebTemplatesPath%" Goto Skip3
  42. if Not Exist "%CommonAppWebTemplatesPath%" Goto Skip3
  43. xcopy "%CommonAppWebTemplatesPath%" "%UserAppWebTemplatesPath%" /E /I >Nul: 2>&1
  44. :Skip3