Advertisement
MagicAndre1981

new Windows Update Error codes in Windows 10

Apr 3rd, 2015
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //
  2. // MessageId: WU_E_SYSTEM_UNSUPPORTED
  3. //
  4. // MessageText:
  5. //
  6. // This version or edition of the operating system doesn't support the needed functionality.
  7. //
  8. #define WU_E_SYSTEM_UNSUPPORTED          _HRESULT_TYPEDEF_(0x80240056L)
  9.  
  10. //
  11. // MessageId: WU_E_NO_SUCH_HANDLER_PLUGIN
  12. //
  13. // MessageText:
  14. //
  15. // The requested update download or install handler, or update applicability expression evaluator, is not provided by this Agent plugin.
  16. //
  17. #define WU_E_NO_SUCH_HANDLER_PLUGIN      _HRESULT_TYPEDEF_(0x80240057L)
  18.  
  19. //
  20. // MessageId: WU_E_INVALID_SERIALIZATION_VERSION
  21. //
  22. // MessageText:
  23. //
  24. // The requested serialization version is not supported.
  25. //
  26. #define WU_E_INVALID_SERIALIZATION_VERSION _HRESULT_TYPEDEF_(0x80240058L)
  27.  
  28. //
  29. // MessageId: WU_E_NETWORK_COST_EXCEEDS_POLICY
  30. //
  31. // MessageText:
  32. //
  33. // The current network cost does not meet the conditions set by the network cost policy.
  34. //
  35. #define WU_E_NETWORK_COST_EXCEEDS_POLICY _HRESULT_TYPEDEF_(0x80240059L)
  36.  
  37. //
  38. // MessageId: WU_E_CALL_CANCELLED_BY_HIDE
  39. //
  40. // MessageText:
  41. //
  42. // The call is cancelled because it applies to an update that is hidden (no longer applicable to this computer).
  43. //
  44. #define WU_E_CALL_CANCELLED_BY_HIDE      _HRESULT_TYPEDEF_(0x8024005AL)
  45.  
  46. //
  47. // MessageId: WU_E_CALL_CANCELLED_BY_INVALID
  48. //
  49. // MessageText:
  50. //
  51. // The call is cancelled because it applies to an update that is invalid (no longer applicable to this computer).
  52. //
  53. #define WU_E_CALL_CANCELLED_BY_INVALID   _HRESULT_TYPEDEF_(0x8024005BL)
  54.  
  55.  
  56. //
  57. // MessageId: WU_E_MSI_NOT_PRESENT
  58. //
  59. // MessageText:
  60. //
  61. // Search may have missed some updates because the Windows Installer is less than version 3.1.
  62. //
  63. #define WU_E_MSI_NOT_PRESENT             _HRESULT_TYPEDEF_(0x80241005L)
  64.  
  65.  
  66. //
  67. // MessageId: WU_E_UH_HANDLER_DISABLEDUNTILREBOOT
  68. //
  69. // MessageText:
  70. //
  71. // The update handler is disabled until the system reboots.
  72. //
  73. #define WU_E_UH_HANDLER_DISABLEDUNTILREBOOT _HRESULT_TYPEDEF_(0x8024201DL)
  74.  
  75. //
  76. // MessageId: WU_E_UH_APPX_NOT_PRESENT
  77. //
  78. // MessageText:
  79. //
  80. // The AppX infrastructure is not present on the system.
  81. //
  82. #define WU_E_UH_APPX_NOT_PRESENT         _HRESULT_TYPEDEF_(0x8024201EL)
  83.  
  84. //
  85. // MessageId: WU_E_UH_NOTREADYTOCOMMIT
  86. //
  87. // MessageText:
  88. //
  89. // The update cannot be committed because it has not been previously installed or staged.
  90. //
  91. #define WU_E_UH_NOTREADYTOCOMMIT         _HRESULT_TYPEDEF_(0x8024201FL)
  92.  
  93.  
  94. //
  95. // MessageId: WU_E_DM_NEEDBATCHDOWNLOADREQUEST
  96. //
  97. // MessageText:
  98. //
  99. // An operation could not be completed because a batched download request is required from the download handler.
  100. //
  101. #define WU_E_DM_NEEDBATCHDOWNLOADREQUEST _HRESULT_TYPEDEF_(0x80246015L)
  102.  
  103. //
  104. // MessageId: WU_E_DM_UNAUTHORIZED_NO_USER
  105. //
  106. // MessageText:
  107. //
  108. // The download failed because the client was denied authorization to download the content due to no user logged on.
  109. //
  110. #define WU_E_DM_UNAUTHORIZED_NO_USER     _HRESULT_TYPEDEF_(0x80246016L)
  111.  
  112. //
  113. // MessageId: WU_E_DM_UNAUTHORIZED_LOCAL_USER
  114. //
  115. // MessageText:
  116. //
  117. // The download failed because the local user was denied authorization to download the content.
  118. //
  119. #define WU_E_DM_UNAUTHORIZED_LOCAL_USER  _HRESULT_TYPEDEF_(0x80246017L)
  120.  
  121. //
  122. // MessageId: WU_E_DM_UNAUTHORIZED_DOMAIN_USER
  123. //
  124. // MessageText:
  125. //
  126. // The download failed because the domain user was denied authorization to download the content.
  127. //
  128. #define WU_E_DM_UNAUTHORIZED_DOMAIN_USER _HRESULT_TYPEDEF_(0x80246018L)
  129.  
  130. //
  131. // MessageId: WU_E_DM_UNAUTHORIZED_NO_LICENSE
  132. //
  133. // MessageText:
  134. //
  135. // The download failed because the user has no license to download the content.
  136. //
  137. #define WU_E_DM_UNAUTHORIZED_NO_LICENSE  _HRESULT_TYPEDEF_(0x80246019L)
  138.  
  139. //
  140. // MessageId: WU_E_DM_FALLINGBACKTOBITS
  141. //
  142. // MessageText:
  143. //
  144. // The download will be continued by falling back to BITS to download the content.
  145. //
  146. #define WU_E_DM_FALLINGBACKTOBITS        _HRESULT_TYPEDEF_(0x8024601AL)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement