Posted On October 29, 2020

Windows Update Error Code 0x80244022

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Windows Update Error Code 0x80244022
Symptom:
There were some problems installing updates, but we'll try again later. If you keep seeing this and want to search the web or contact support for information, this may help: (0x80244022)

Possible Fixes:
  1. Remove partially downloaded updates:
    • Set time FORWARD (1st of next month)
    • “C:\Windows\SoftwareDistribution\Download”
    • “wuauclt.exe /updatenow”
    • Control Panel > Windows Update
  2. Cleanup Windows Update
    • DISM.exe /Online /Cleanup-image /Restorehealth
    • sfc /scannow
  3. Reset Windows Update
    • Run these commands as Administrator
      net stop wuauserv /y
      net stop cryptSvc /y
      net stop bits /y
      net stop msiserver /y
      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
    • Retry Windows Update
  4. Check WSUS Server

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

VoIP Test Plan

Have MPLS or VPN connections between sites and ensure that these requirements are satisfied: a.…

PowerShell: Quickly Test Connectivity from a List of Sources toward a Destination on a Specific Port

# testRemotePort.ps1 $connectFrom=@' windows1 windows2 '@ $connectTo=@' \\servername\sharename '@ $testPort=445 $sources=@($connectFrom -split "`n")|%{$_.Trim()} $destinations=@($connectTo -split…

PowerShell: Microsoft Exchange to Require that all Senders are Authenticated

In this scenario, the business decision is to limit exposure of certain internal accounts to…