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.

71 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. Rem
  23. call TsMkUDir "%UserTemplatesPath%"
  24. call TsMkUDir "%UserCustomDicPath%"
  25. call TsMkUDir "%RootDrive%\%MY_DOCUMENTS%"
  26. Rem #########################################################################
  27. Rem
  28. Rem �� Custom.dic �ļ����Ƶ��û���Ŀ¼
  29. Rem
  30. If Exist "%UserCustomDicFile%" Goto Skip1
  31. If Not Exist "%CommonCustomDicFile%" Goto Skip1
  32. Copy "%CommonCustomDicFile%" "%UserCustomDicFile%" >Nul: 2>&1
  33. :Skip1
  34. Rem #########################################################################
  35. Rem
  36. Rem ��ģ�帴�Ƶ��û���ģ������
  37. Rem
  38. If Exist "%UserAppTemplatesPath%" Goto Skip2
  39. If Not Exist "%CommonAppTemplatesPath%" Goto Skip2
  40. xcopy "%CommonAppTemplatesPath%" "%UserAppTemplatesPath%" /E /I >Nul: 2>&1
  41. :Skip2
  42. if Exist "%UserAppWebTemplatesPath%" Goto Skip3
  43. if Not Exist "%CommonAppWebTemplatesPath%" Goto Skip3
  44. xcopy "%CommonAppWebTemplatesPath%" "%UserAppWebTemplatesPath%" /E /I >Nul: 2>&1
  45. :Skip3