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

Security Updates for Windows 10 / Windows Server 2016 / Windows Server 2019 (March 2019) (Spectre) (Meltdown) (Foreshadow)

Description The remote Windows host is missing a security update. It is, therefore, missing microcode…

Windows Special Run Commands

File Function Tabs (number in parentheses is index n discussed below) access.cpl Accessibility controls Keyboard(1),…

PowerShell: Hyper-V Servers Capacity Report

Current Version: # HyperVCapacityReport.ps1 # Version 0.0.2 # Report parameters $workingDirectory='C:\scripts\googleSheets' $selectFields='node,model,os,cores,cpuUtilizationPercent,ramGb,ramUsedPercent' $domainObjects=@( @{domain='intranet.kimconnect.com';dc='lax-dc02.intranet.kimconnect.com';username='intranet\clusterReport';password=$env:clusterReportPass} @{domain='intranet.dragoncoin.com';dc='lax-dc02.intranet.dragoncoin.com';username='intranet\clusterReport';password=$env:clusterReportPass}…