Forums on Intune, SCCM, and Windows 11

Welcome to the forums. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your topics and posts, as well as connect with other members through your own private inbox!

PENDING SCCM Windows 11 patching error 0x80D02002

dacheampong

Member
Messages
6
Reaction score
0
Points
1
installing 2024-12 Cumulative update for windows 11 23H2 for x64-based Systems (KB5048685) failing with error "0x80D02002(-2133843966)".

i need help to resolve this issue
 
Error = 0x80d02002 may have to do with corrupted Windows Update components or incompatible software or drivers in your system. Try resetting Windows Update components manually on the machine and see if that resolves the issue.
 
Error = 0x80d02002 may have to do with corrupted Windows Update components or incompatible software or drivers in your system. Try resetting Windows Update components manually on the machine and see if that resolves the issue.
Thank you for the response. I have tried these (
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
ren C:\Windows\SoftwareDistribution SoftwareDistribution.3
ren C:\Windows\System32\catroot2 catroot2.2
net start wuauserv
net start cryptSvc
net start bits
net start msiserver
) to reset the components but issues still persist. Is there any other option to reset the components please share so i will try that option.
 
On how many devices are you seeing this issue?. I don't think the configuration manager is causing this, as the error code is mostly related to the Windows device.
 
On how many devices are you seeing this issue?. I don't think the configuration manager is causing this, as the error code is mostly related to the Windows device.
am seeing this issue on 8 windows11 system (Laptop) that are part of the Test Collection i pushed the 2024-12 cumulative update Patch
 
as @Prajwal Desai mentioned, this issue is a local issue and i think you must pick one system and fix that issue. Did you run a sfc scan anytime?
i picked on system and run the blow which include "sfc scan" still no changes

SC config trustedinstaller start=auto
net stop bits
net stop wuauserv
net stop msiserver
net stop cryptsvc
net stop appidsvc
Ren %Systemroot%\SoftwareDistribution SoftwareDistribution.old
Ren %Systemroot%\System32\catroot2 catroot2.old
regsvr32.exe /s atl.dll
regsvr32.exe /s urlmon.dll
regsvr32.exe /s mshtml.dll
netsh winsock reset
netsh winsock reset proxy
rundll32.exe pnpclean.dll,RunDLL_PnpClean /DRIVERS /MAXCLEAN
dism /Online /Cleanup-image /ScanHealth
dism /Online /Cleanup-image /CheckHealth
dism /Online /Cleanup-image /RestoreHealth
dism /Online /Cleanup-image /StartComponentCleanup
Sfc /ScanNow
net start bits
net start wuauserv
net start msiserver
net start cryptsvc
net start appidsvc
 
Back
Top