After approving updates from WSUS then approving updates on SCCM we are getting an error saying "Download error - 0x80d02002" when a client goes to download an update from Windows Update. Any suggestions on what might be causing this?
SCCM - Unable to push Windows Updates to Clients
6.6k views Asked by Alex Jokerst At
1
There are 1 answers
Related Questions in WINDOWS-10
- How to immediately apply DISPLAYCONFIG_SCALING display scaling mode with SetDisplayConfig and DISPLAYCONFIG_PATH_TARGET_INFO
- Spring @Scheduled cron fixed time doesn't work with OS suspension
- Swapping a healthy and unallocated partition in Windows 10
- Installing Docker on Windows 10
- Unexpected OS Shutdown
- Segfault GTK4 on windows 10
- FileSystemWatcher works reliably, unless I write to a log file
- IDT Audio Codec and Driver
- How can I use System.Security.Cryptography.ChaCha20Poly1305 on Windows 10?
- $WinREAgent folder keeps to automatically appear
- Powershell's InvokeVerb("delete") freezes after 22H2 update
- sdkmanager --list Exception in thread "main"
- Batch file wont run in Task Scheduler in Windows 10
- STM32 Not recognized by Windows 10
- C# X509Certificate2 private key disappear when GC occurs
Related Questions in SCCM
- Copy CMApplication with PowerShell
- How to restart chrome/Edge without user involved
- How to apply the changes of client settings for one device grouping in sccm?
- Not all objects are found in a "SELECT" command
- SCCM/MECM or PS: Remote Notification to client
- Get SCCM Deployment's Tab properties using PowerShelll
- SCCM - Software update status query in powershell
- Powershell Get-Process behavior - Can't find process under certain conditions
- Can I run an separate instance of PowerShell from a Config Manager (SCCM) detection script?
- Try catch block doesn't hit during Task Sequence
- Command net localgroup Administrateurs $user /DELETE works as a script in MCM but not in Intune, why?
- CMPivot to get registry keys
- Add-CMScriptDeploymentType issue in SCCM
- Powershell script to copy existing file to remote computers via SCCM
- Configuration Manager Powershell Module Move-CMObject Error
Related Questions in WINDOWS-UPDATE
- Broken Windows Server, after crash of VM - CBS_E_SOURCE_MISSING
- Schedule WSUS Updates for a group of devices
- Windows Post Patch Report not showing available/pending updates
- On Windows 10/11, How to delete Registry HKEY_LOCAL_MACHINE\SYSTEM\WaaS\Upfc?
- Media Foundation cannot initialise transform (cannot connect to Windows Update)
- WSUS delete computer in DownstreamServer
- Download Newest Windows 11x64 CUs for: System & .NET Framework with PowerShell or any other automation tool
- PostgreSQL Error: Database Locale Incompatibility Following Windows Update (From Turkish_Turkey.1254 to Turkish_Türkiye.1254)
- Import update into WSUS by .msu file
- Azure Update Manger - Cannot edit maintenance configurations that were created with Powershell
- WSUS Upstream and Downstream in different domains
- access method 'system.window.dpiscale.get_pielperinchy() failed
- How do I test if the changes I made to the Windows 10 Update process work
- Could not load file or assembly Microsoft.AspNetCore.*
- Object error during installation of Windows updates
Related Questions in SYSTEM-CENTER
- PowerShell and Service Manager
- System Center Service Manager - Get-SCSMObject Filter
- SCCM client with dual windows boot on the same computer
- Configuration Manager Configuration Baseline evaluation schedule in the deployment vs client settings
- Install SCVMM 2022 agent on AlmaLinux 9 VM
- Setting up basic logging
- How to make activity only run once after receiving multiple outputs with SC Orchestrator?
- Repeated Error in SQL Server 2017 Error Log (Error: 15404, error-code 0x5)
- SCCM - Unable to push Windows Updates to Clients
- Retrieving properties from a complex SQL query in C#
- Use SCOM SDK with tls1.2
- SCOM Create ClassInstance Override via PowerShell
- How to insert performance data to DW database using SCOM SDK?
- Health State does not change in SCOM
- SCCM 1710 - Client Data Source Report incorrect
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
I can't give you a firm answer but I can give you some information that might be helpful. 0x80d02002 is "DO_E_DOWNLOAD_NO_PROGRESS" -- it means that the client's download seemed to start all right, but then several minutes went by without receiving any data from the server.
One possible cause: Are you using express updates? Express updates reduce the amount of data being downloaded by each client computer, but at the expense of a lot more network round trips (clients making multiple small requests instead of one large one) and client-side CPU and disk usage (the client has to do a lot of file parsing to figure out exactly what parts of the express update packages it needs to download). Since nothing is being downloaded while the client is doing these computations, I have seen some cases where the computation cycle took so long that it triggered the download timeout.
If your WSUS/SCCM server is on the same intranet as your clients (meaning that bandwidth between the server and the clients is free and relatively unconstrained), I would suggest turning off express installation in the SCCM settings and seeing if that impacts your results.