#Requires -Version 5.1 <# JbTecWiz Support Centre -- generated fix script Fault : Send and receive errors -- 0x800CCC0E, 0x8004210A, 0x800CCC0F Fix : Test the network path properly Source: https://jbtecwiz.com/support/win-office-send-receive Run as : PowerShell as the affected user Expect : 30 minutes Risk : low Reversible : yes WHEN THIS IS THE RIGHT FIX Nothing above applies, or the fault follows the machine between networks -- or does not. HOW TO UNDO IT Nothing changed on the machine -- this fix is diagnosis only. This script walks the fix one step at a time and asks before each one. Steps with no command are things you do yourself -- it prints those and waits. Run with -DryRun to print without executing. #> [CmdletBinding()] param( # Print every step and command without running anything. [switch]$DryRun, # Do not ask before each step. Read the script first if you use this. [switch]$Unattended ) $ErrorActionPreference = 'Stop' $script:Failed = 0 function Write-Rule { param([string]$Text) Write-Host '' Write-Host ('-' * 70) -ForegroundColor DarkGray if ($Text) { Write-Host $Text -ForegroundColor Cyan } } function Show-Prose { param([string]$Text, [string]$Colour = "Gray") if (-not $Text) { return } $words = $Text -split "\s+"; $line = " " foreach ($w in $words) { if (($line.Length + $w.Length) -gt 74) { Write-Host $line -ForegroundColor $Colour; $line = " " } $line += "$w " } if ($line.Trim()) { Write-Host $line -ForegroundColor $Colour } } function Invoke-Step { param( [int]$Number, [string]$Do, [string]$Why, [scriptblock]$Command, [switch]$Manual, [string]$Shell = "powershell" ) Write-Rule " Step $Number of 5" Show-Prose $Do "White" if ($Why) { Write-Host ""; Show-Prose $Why "DarkGray" } if ($Manual) { Write-Host '' Write-Host ' -> Do this yourself, then press Enter to carry on.' -ForegroundColor Yellow if (-not $Unattended -and -not $DryRun) { [void](Read-Host) } return } Write-Host '' foreach ($l in ($Command.ToString().Trim() -split "`n")) { Write-Host (" " + $l.Trim()) -ForegroundColor Green } Write-Host '' if ($DryRun) { Write-Host " (dry run -- not executed)" -ForegroundColor DarkGray; return } if (-not $Unattended) { $a = Read-Host " Run this step? [Y]es / [S]kip / [Q]uit" if ($a -match "^[Qq]") { Write-Host " Stopped at your request."; exit 0 } if ($a -match "^[Ss]") { Write-Host " Skipped." -ForegroundColor DarkGray; return } } try { & $Command } catch { $script:Failed++ Write-Host (" Step $Number failed: " + $_.Exception.Message) -ForegroundColor Red Show-Prose "The rest of the fix may depend on this. Read the write-up before carrying on." "Red" if (-not $Unattended) { $c = Read-Host " Carry on anyway? [y/N]" if ($c -notmatch "^[Yy]") { exit 1 } } } } Write-Rule Write-Host ' Send and receive errors -- 0x800CCC0E, 0x8004210A, 0x800CCC0F' -ForegroundColor White Write-Host ' Test the network path properly' -ForegroundColor Cyan Write-Host '' Write-Host ' Risk: low Reversible 30 minutes' Write-Rule if (-not $Unattended -and -not $DryRun) { $go = Read-Host ' Ready? [y/N]' if ($go -notmatch "^[Yy]") { Write-Host " Nothing was changed."; exit 0 } } Invoke-Step -Number 1 -Do 'Establish whether the network is the variable by testing on a different one -- a phone hotspot is the quickest.' -Why 'This one test splits the problem in half. Working on a hotspot and failing on the office network means the fault is the network, not Outlook, and everything you would have done to the client is wasted effort.' -Manual Invoke-Step -Number 2 -Do 'Check name resolution is returning something sensible.' -Command { Resolve-DnsName outlook.office365.com | Select-Object Name, Type, IP4Address -First 5 } Invoke-Step -Number 3 -Do 'Check whether a proxy is configured that mail traffic is being forced through.' -Command { Get-ItemProperty 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings' | Select-Object ProxyEnable, ProxyServer, AutoConfigURL } Invoke-Step -Number 4 -Do 'Run Microsoft''s own connectivity test against the account, which checks the whole path from outside and reports which hop failed.' -Command { Start-Process 'https://testconnectivity.microsoft.com/' } Invoke-Step -Number 5 -Do 'If the office network is the variable, take the findings to whoever runs the firewall. Mail inspection appliances and SSL-inspecting proxies are the usual cause and it is not fixable from the client.' -Manual Write-Rule " Confirm it worked" Show-Prose 'Send/Receive completes on the network that was failing.' 'White' Write-Rule if ($script:Failed -gt 0) { Write-Host (" Finished with " + $script:Failed + " failed step(s).") -ForegroundColor Yellow Show-Prose 'Read the full write-up at https://jbtecwiz.com/support/win-office-send-receive' 'Yellow' } else { Write-Host ' Finished.' -ForegroundColor Green } Write-Host '' Show-Prose 'To undo: Nothing changed on the machine -- this fix is diagnosis only.' 'DarkGray' Write-Rule