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.

136 lines
3.8 KiB

  1. ;/*++
  2. ;
  3. ; Copyright (c) Microsoft Corporation 1998
  4. ; All rights reserved
  5. ;
  6. ;
  7. ; Definitions for file deployment events.
  8. ;
  9. ;--*/
  10. ;
  11. ;#ifndef _FDEVENTS_
  12. ;#define _FDEVENTS_
  13. ;
  14. SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
  15. Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
  16. Warning=0x2:STATUS_SEVERITY_WARNING
  17. Error=0x3:STATUS_SEVERITY_ERROR
  18. )
  19. ;
  20. ;// Errors
  21. ;
  22. MessageId=101 Severity=Error SymbolicName=EVENT_FDEPLOY_FOLDER_CREATE_FAIL
  23. Language=English
  24. Failed to perform redirection of folder %1.
  25. The new directories for the redirected folder could not be created.
  26. The folder is configured to be redirected to <%3>, the final expanded path was <%4>.
  27. The following error occurred: %n%2
  28. .
  29. MessageId=102 Severity=Error SymbolicName=EVENT_FDEPLOY_FOLDER_MOVE_FAIL
  30. Language=English
  31. Failed to perform redirection of folder %1.
  32. The files for the redirected folder could not be moved to the new location.
  33. The folder is configured to be redirected to <%3>. Files were being moved from <%4> to <%5>.
  34. The following error occurred: %n%2
  35. .
  36. MessageId=103 Severity=Error SymbolicName=EVENT_FDEPLOY_FOLDER_EXPAND_FAIL
  37. Language=English
  38. Failed to perform redirection of folder %1.
  39. The fully expanded paths for the folder could not be determined.
  40. The following error occurred: %n%2
  41. .
  42. MessageId=104 Severity=Error SymbolicName=EVENT_FDEPLOY_FOLDER_REGSET_FAIL
  43. Language=English
  44. Failed to perform redirection of folder %1.
  45. The system registry could not be updated.
  46. The following error occurred: %n%2
  47. .
  48. MessageId=106 Severity=Error SymbolicName=EVENT_FDEPLOY_FOLDER_OFFLINE
  49. Language=English
  50. Failed to perform redirection of folder %1.
  51. The full source path was <%2>.
  52. The full destination path was <%3>.
  53. At least one of the shares on which these paths lie is currently offline.
  54. .
  55. MessageId=107 Severity=Error SymbolicName=EVENT_FDEPLOY_REDIRECT_FAIL
  56. Language=English
  57. Failed to perform redirection of folder %1.
  58. The folder is configured to be redirected from <%3> to <%4>.
  59. The following error occurred: %n%2
  60. .
  61. MessageId=108 Severity=Error SymbolicName=EVENT_FDEPLOY_REDIRECT_RECURSE
  62. Language=English
  63. Aborting redirection of folder %1.
  64. The new folder path cannot be a subdirectory of the current path.
  65. The folder is configured to be redirected to <%2>.
  66. Files were to be moved from <%3> to <%4>.
  67. .
  68. MessageId=109 Severity=Error SymbolicName=EVENT_FDEPLOY_POLICYPROCESS_FAIL
  69. Language=English
  70. Failed to read redirection settings for policy %1.
  71. The following error occurred while accessing the initialization file: %n%2
  72. .
  73. MessageId=110 Severity=Error SymbolicName=EVENT_FDEPLOY_DESTPATH_TOO_LONG
  74. Language=English
  75. Aborting redirection of folder %1. The expanded target path is too long.
  76. The folder is configured to be redirected to <%2>.
  77. Expanded target paths longer than %3 characters are not permitted.
  78. .
  79. MessageId=111 Severity=Error SymbolicName=EVENT_FDEPLOY_INIT_FAILED
  80. Language=English
  81. Unable to apply folder redirection policy, initialization failed.
  82. .
  83. MessageId=112 Severity=Error SymbolicName=EVENT_FDEPLOY_FOLDER_COPY_FAIL
  84. Language=English
  85. Failed to perform redirection of folder %1.
  86. The files for the redirected folder could not be moved to the new location.
  87. The folder is configured to be redirected to <%3>. Files were being moved from <%4> to <%5>.
  88. The following error occurred while copying <%6> to <%7>: %n%2
  89. .
  90. ;
  91. ;// Warning
  92. ;
  93. MessageId=301 Severity=Warning SymbolicName=EVENT_FDEPLOY_POLICY_DELAYED
  94. Language=English
  95. Folder redirection policy application has been delayed until the next logon
  96. because the group policy logon optimization is in effect.
  97. .
  98. ;
  99. ;// Success
  100. ;
  101. MessageId=401 Severity=Success SymbolicName=EVENT_FDEPLOY_FOLDER_REDIRECT
  102. Language=English
  103. Successfully redirected folder %1.
  104. The folder was redirected from <%2> to <%3>.
  105. .
  106. ;
  107. ;// Verbose
  108. ;
  109. MessageId=401 Severity=Informational SymbolicName=EVENT_FDEPLOY_VERBOSE
  110. Language=English
  111. %1
  112. .
  113. ;
  114. ;#endif
  115. ;