Is there the full list of return codes for "wusa.exe"?

40,014

Solution 1

I don't pretend that these pages are comprehensive, but here are links to two documents that might help:

Hopefully they're useful. There's a third document titled Windows Update Agent Networking Error Codes that you'll find along side Windows Update Agent Success and Error Codes. I would have included that link but a I received a red tooltip that informed me I "need at least 10 reputation to post more than 2 links."

Solution 2

Here is a link (I hope it is what your are searching for): http://inetexplorer.mvps.org/archive/windows_update_codes.htm .

Solution 3

Wusa.exe is just a wrapper for Windows Update functions to install MSU updates. Install the Windows 10 SDK and look into the file "C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\um\wuerror.h" to all Windows Update related errors.

Share:
40,014

Related videos on Youtube

Denis
Author by

Denis

Updated on September 18, 2022

Comments

  • Denis
    Denis almost 2 years

    Is there the full list of return codes for "wusa.exe"?

    I guess that Windows System Error Codes are applicable here. http://www.hiteksoftware.com/knowledge/articles/049.htm

    But sometimes I need to consider other return codes such as: 2359302 or 2359303

    • Admin
      Admin almost 9 years
      Sometimes patch admins get really obscure error codes or error codes that are common with something completely unrelated, and google doesn't provide good links to those cases
    • Admin
      Admin over 6 years
  • Koraktor
    Koraktor over 9 years
    I have no idea why this was downvoted, but this list is just what I needed. For example, searching for error code 0x8024017 will give you various forum threads and blog posts about that "problem". This list will just tell you, that it means an update is not needed.
  • austinian
    austinian almost 9 years
    It was probably downvoted because if the link goes dead or the information becomes invalid, it decreases the value of the answer, since the answer can't stand on its own without the contents of the link.
  • janv8000
    janv8000 over 8 years
    Link returns 404
  • janv8000
    janv8000 over 8 years
    Keep in mind that some error codes have to be converted from base10 to hex, eg. code 2359303 in Windows update could not be uninstalled because of error 2359303 "" (Command line: "wusa /uninstall /kb:3098779 /quiet /norestart") equals 0x00240007
  • Koraktor
    Koraktor about 8 years
  • Nandun
    Nandun almost 4 years
    It appears some error codes show in the event log in their decimal form. We kept seeing the error code 2149842976‬ in event viewer with almost nothing coming up on google. Convert this to its HEX as 0x80240020 and voila. its there in both those articles. this was super misleading. Hope this helps someone.