π ~1 min read
Table of contents
Symptom & Impact
Patch Tuesday saturates the WAN link on Windows Server 2019 branch hosts because Delivery Optimization peer cache is not used.
Environment & Reproduction
Reproduces when DownloadMode is configured to HTTP only, ignoring LAN peers entirely.
Get-DeliveryOptimizationStatus
Get-DeliveryOptimizationPerfSnap
Root Cause Analysis
DO requires DownloadMode 1 (LAN) or 2 (Group) with a Group ID for peers to share update payloads inside the branch.
Quick Triage
Verify current DownloadMode and Group ID configuration.
Get-DOConfig -Verbose
Get-ItemProperty 'HKLM:SOFTWAREPoliciesMicrosoftWindowsDeliveryOptimization'
Step-by-Step Diagnosis
Capture DO logs and measure peer bytes versus internet bytes.
Get-DeliveryOptimizationPerfSnap | Select TotalBytes*,*Peers*

Solution β Primary Fix
Set DownloadMode to Group with a shared Group ID and ensure DO ports are open on the LAN.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
Set-DODownloadMode -Value 2
Set-DOGroupID -Value (New-Guid).Guid
New-NetFirewallRule -DisplayName 'DO TCP' -Direction Inbound -Protocol TCP -LocalPort 7680 -Action Allow

Solution β Alternative Approaches
Deploy a Microsoft Connected Cache server in the branch to terminate Delivery Optimization traffic locally.
# Install Connected Cache role on a branch host
Verification & Acceptance Criteria
Get-DeliveryOptimizationPerfSnap shows significant peer percent and reduced internet bytes.
Get-DeliveryOptimizationPerfSnap
Rollback Plan
Set DownloadMode back to HTTP-only if peer traffic conflicts with QoS policies.
Set-DODownloadMode -Value 0
Prevention & Hardening
Standardise DO Group ID per site and monitor peer ratio after each patch cycle.
# Group Policy: configure DownloadMode and Group ID
Related Errors & Cross-Refs
Related: BITS download throttling, WSUS bandwidth saturation, and BranchCache misconfiguration.
Related tutorial: View the step-by-step tutorial for Windows Server 2019.
View all Windows Server 2019 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Microsoft Learn documentation on Delivery Optimization configuration and Connected Cache.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today β we respond within one business day.