Organizing and accessing contact information in Outlook on the web for business
Your issue could very well be caused by the BITS "hanging" problem. I that the problem was caused by the April Security Update (KB5083769) that was installed on my PC on May 21. This post explains the issue. A May 13 9:07PM comment in that post by the OP indicates that KB5089549 (May 2026 Update) resolves the issue.
More Info: The Background Intelligent Transfer Service (BITS) uses a single FIFO queue. It appears that Outlook OAB download, Chrome Update, Visual Studio Update, Edge Update and probably other uses of BITS were blocking the queue. Repeatedly monitoring the queue (using PowerShell Get-Bitstransfer) , I saw the first queued item in Connecting state and then some time later, Get-Bitstransfer would not complete.
I reset BITS queue using these PowerShell commands:
TaskKill /f /fi “services eq bits”
Remove-Item “C:\ProgramData\Microsoft\Network\Downloader*” -Force
Start-Service bits
and then monitored the BITS queue and repeatedly, see the same result. The first item in the queue would be in Connecting state and then some time later BITS would “hang.”