Source code of Windows XP (NT5)
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.

56 lines
1.8 KiB

  1. @echo off
  2. Rem #########################################################################
  3. Rem �]�w�ϥΪ̽d���Φۭq�ؿ����|
  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 �]�w���νd���Φۭq�ؿ����|
  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 �b�ϥΪ̥D�ؿ����إ����ε{�����w���ƥؿ��C
  20. Rem
  21. call TsMkUDir "%UserTemplatesPath%"
  22. call TsMkUDir "%UserCustomDicPath%"
  23. call TsMkUDir "%RootDrive%\%MY_DOCUMENTS%"
  24. Rem #########################################################################
  25. Rem
  26. Rem �N Custom.dic �ɮ׽ƻs���ϥΪ̥ؿ��C
  27. Rem
  28. If Exist "%UserCustomDicFile%" Goto Skip1
  29. If Not Exist "%CommonCustomDicFile%" Goto Skip1
  30. Copy "%CommonCustomDicFile%" "%UserCustomDicFile%" >Nul: 2>&1
  31. :Skip1
  32. Rem #########################################################################
  33. Rem
  34. Rem �N�d���ƻs���ϥΪ̽d���ϰ��C
  35. Rem
  36. If Exist "%UserAppTemplatesPath%" Goto Skip2
  37. If Not Exist "%CommonAppTemplatesPath%" Goto Skip2
  38. xcopy "%CommonAppTemplatesPath%" "%UserAppTemplatesPath%" /E /I >Nul: 2>&1
  39. :Skip2
  40. if Exist "%UserAppWebTemplatesPath%" Goto Skip3
  41. if Not Exist "%CommonAppWebTemplatesPath%" Goto Skip3
  42. xcopy "%CommonAppWebTemplatesPath%" "%UserAppWebTemplatesPath%" /E /I >Nul: 2>&1
  43. :Skip3