Most people assume Outlook is down the second they see a red X, a spinning circle, or 'Cannot connect to server'. They panic, refresh Outlook Web App, restart the desktop app, even call IT — all before checking whether the problem is on their end. It’s not. Outlook servers rarely go down. Microsoft’s Exchange Online uptime is 99.99%. So when you type 'is outlook down' into Google, you’re almost certainly troubleshooting the wrong thing.
Quick Answer
No — Outlook is almost never globally down. To verify instantly: open Outlook desktop, press Ctrl+Alt+Shift+1 (this opens the Connection Status dialog), then click Test E-mail AutoConfiguration. If it fails with 'The server isn’t responding', check your local network first — not Microsoft’s status page.
Step-by-Step Walkthrough
- Rule out your local environment: Open Command Prompt and run
ping outlook.office365.com. If you get 'Request timed out' or 'Destination host unreachable', the issue is your Wi-Fi, firewall, or ISP — not Outlook. (I’ve seen this trip up even experienced users who assumed their corporate proxy was fine — it wasn’t.) - Check autoconfiguration status: In Outlook desktop (any version 2016+), go to File > Account Settings > Account Settings…, double-click your email account, click Test Account Settings…. Watch the bottom pane: if 'Logon Network Security' fails or 'Send/Receive Test' hangs at 'Verifying SSL certificate', it’s a local TLS or credential issue — not an outage.
- Bypass cached mode: Go to File > Account Settings > Account Settings… > Change > More Settings > Advanced, uncheck Use Cached Exchange Mode. Click OK, restart Outlook. If mail loads instantly now, your OST file is corrupted — not the service.
- Verify Microsoft 365 Service Health: Don’t rely on third-party status sites. Go directly to admin.microsoft.com/AdminPortal/Home#/servicehealth. Sign in with your work or school account. Look for 'Exchange Online' — not 'Outlook'. (Yes, Outlook is just a client. The service is Exchange Online. This distinction matters.)
- Test web vs. desktop: Open Outlook on the web (outlook.office.com) in an Incognito window. Log in. If it works there but not in desktop Outlook, the desktop app has a profile corruption — not a service outage.
Common Pitfalls
- You check downdetector.com first — but it aggregates user reports, many of which are misdiagnosed. A spike in 'outlook down' reports often coincides with a Windows 10/11 update that breaks TLS 1.2 negotiation. Not a Microsoft outage.
- You restart Outlook repeatedly without clearing the autodiscover cache. Outlook caches DNS and autodiscover responses for 24 hours by default. That means even after your network is fixed, Outlook keeps trying the old broken path. Run
ipconfig /flushdnsand delete the contents of%localappdata%\Microsoft\Office\16.0\Outlook\Autodiscover(for Outlook 365/2019/2016). - You assume mobile Outlook behaves the same as desktop. It doesn’t. iOS and Android apps use different authentication flows and retry logic. On mobile, 'Cannot connect' often means your device clock is off by more than 5 minutes — Kerberos fails silently. Check system time first.
- You treat 'Outlook' as one thing. There’s Outlook desktop (Win/Mac), Outlook on the web, Outlook mobile (iOS/Android), and Outlook for Mac (which uses EWS, not modern auth). An issue in one rarely affects the others. Confusing them wastes hours.
Pro Tips
- Use Outlook’s hidden diagnostic mode: Hold Ctrl while launching Outlook desktop. You’ll get a popup asking 'Do you want to start Outlook in safe mode?'. Say Yes, then immediately go to Help > About Outlook and click the version number 5 times. A hidden 'Diagnostics' tab appears — shows real-time connection latency, last sync time, and failed folders. This took me three days to figure out originally.
- Force a fresh autodiscover: Create a new Outlook profile (Control Panel > Mail > Show Profiles > Add…) and name it 'TEST'. Set it up with your same email. If it works, your original profile is broken — no need to reinstall Outlook.
- Check for MFA token expiration: If your organization uses Conditional Access policies, your session may have expired — but Outlook won’t tell you. Try signing in to portal.azure.com first. If you’re prompted for MFA again, that’s your problem. Desktop Outlook doesn’t auto-refresh tokens like the web app does.
Troubleshooting
If none of the above works, here’s where version and admin control matter:
- Outlook 2013 and older don’t support modern authentication by default. If your tenant disabled legacy auth (most have since 2022), Outlook 2013 will fail with 'Login failed' — even though Outlook.com and Outlook on the web work fine. You must upgrade or enable modern auth via registry (not recommended).
- Outlook for Mac (v16.x) uses Exchange Web Services (EWS), not Graph API. If your admin disabled EWS (common for security), Mac Outlook stops syncing — but Windows Outlook (using Graph) continues working. No error message explains this.
- Corporate admins can block Outlook desktop entirely using Exchange Online PowerShell:
Set-CASMailbox -Identity user@company.com -OWAEnabled $false -ActiveSyncEnabled $false -PopEnabled $false -ImapEnabled $false. This disables all clients except Outlook on the web — but users think 'Outlook is down' because their desktop app fails. - Mobile Outlook on iOS/Android sometimes gets stuck on 'Loading…' due to background app refresh being disabled. Go to iOS Settings > Outlook > Background App Refresh → ON. Android: Settings > Apps > Outlook > Battery > set to 'Unrestricted'.
Here’s how to choose the right diagnostic method based on your situation:
| Your Situation | Best Method | Why |
|---|---|---|
| You're on a public Wi-Fi (airport, hotel) | Test Outlook on the web in Incognito + ping outlook.office365.com | Public networks often block port 443 for Exchange RPC over HTTPS. Web access uses standard HTTPS — same as browsing. |
| You just changed your password | Remove and re-add account in Outlook desktop | Cached credentials don’t auto-update. Removing the account forces fresh auth — including MFA prompts. |
| You see 'Disconnected' in bottom-left corner | Press Ctrl+Alt+Shift+1 → click 'Reconnect' | This bypasses Outlook’s slow internal retry logic and forces immediate TCP handshake. |
| Calendar shows old events only (e.g., 'Client Demo — Acme Corp' from March, no April ones) | Go to File > Account Settings > Account Settings… > double-click account > More Settings > Advanced → increase 'Download email from:' to 'All' | Cached mode defaults to 12 months. If your mailbox is large, Outlook skips syncing recent items to avoid performance hit. |
| You get 'The action cannot be completed' when opening a calendar event (e.g., 'Team Offsite — Napa Valley') | Right-click the calendar folder > Properties > Permissions → ensure 'Default' has 'Reviewer' or higher | Shared calendars often lose permissions after tenant migrations. Outlook shows generic errors instead of permission warnings. |
| Dentist Appointment shows up 3 hours early on mobile | Check iOS/Android system time zone vs. Outlook time zone setting | Mobile Outlook pulls time zone from device OS — but if your Outlook profile is set to 'Pacific Time' and your phone is on 'Automatic time zone', conflicts cause offset errors. |
| Outlook desktop freezes for 20+ seconds when clicking 'Send' | Disable 'Check spelling as you type' (File > Options > Mail > Spelling and Autocorrect) | This feature scans every word against a local dictionary — and blocks the UI thread. Disabling it cuts send lag by ~80% on older machines. |