0x8024402f wu_e_pt_ecp_succeeded_with_errors server 2012 r2

ViciouS 1 Reputation point
2021-06-23T15:59:11.877+00:00

I have done everything I can find. I have several servers coming up with this error on different networks.

what I have done:

• Verify Time
• Restart Windows Time Service
• DISM /Online /Cleanup-Image /RestoreHealth
• SFC /scannow
• Reset Windows update components
• Reregister the BITS files and the Windows Update files
• Confirm if any changes were made regarding internet security in our companies environment (nothing changed)

Windows Server 2012
Windows Server 2012
A Microsoft server operating system that supports enterprise-level management, data storage, applications, and communications.
1,571 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Teemo Tang 11,376 Reputation points
    2021-06-24T01:58:40.103+00:00

    Error Code
    0x8024402F WU_E_PT_ECP_SUCCEEDED_WITH_ERRORS
    External cab file processing completed with some errors One of the reasons we see this issue is due to the design of a software called Lightspeed Rocket for Web filtering.
    Add the IP addresses of devices you want to get updates to the exceptions list of Lightspeed
    Source:
    https://learn.microsoft.com/en-us/windows/deployment/update/windows-update-errors

    To fix it, right click on the start button and select Powershell (admin) or Command Prompt (admin)
    Write the next hit enter after each line.

    net stop wuauserv
    net stop cryptSvc
    net stop bits
    net stop msiserver
    Ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
    Ren C:\Windows\System32\catroot2 Catroot2.old
    net start wuauserv
    net start cryptSvc
    net start bits
    net start msiserver

    full scan by antivirus or Windows Defender.
    Reset DNS Settings
    Disable firewalls or other Internet browser programs that can affect the Windows Update site access.

    After above, restart computer then manually install updates from Microsoft Catalog.

    Similar case:
    https://serverfault.com/questions/741083/unable-to-update-windows-server-2012

    -------------------------------------------------------------------------------------

    If the Answer is helpful, please click "Accept Answer" and upvote it.
    Information posted in the given link is hosted by a third party. Microsoft does not guarantee the accuracy and effectiveness of information.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments