Most people think 'how old is Outlook?' is a trivia question. They’re wrong. Knowing Outlook’s age isn’t about nostalgia — it’s about diagnosing bugs, troubleshooting add-in failures, and understanding why your Ctrl+R reply behaves differently in Outlook 365 vs. 2016. Build numbers change weekly. Release dates lie. The real age lives in the binary.
Quick Answer
Microsoft Outlook first shipped on November 10, 1996, as part of Microsoft Office 97. That makes it 28 years old as of 2024 — but the version you're running could be days or years old. You’ll find its true age in File > Account > About Outlook (desktop), or by checking the build number in Outlook Web App’s help menu. Outlook for Mac launched in 2011; Outlook on the web has no fixed release date — it updates continuously.
All the Methods
| Method | Steps | Best For | Limitations |
|---|---|---|---|
| Desktop About Box | File > Account > About Outlook | Windows desktop users needing exact build & version | Not available in Outlook for Mac or web |
| Outlook Web App Footer | Scroll to bottom of inbox → click 'About' (small text) | Anyone using Outlook on the web (office.com) | Shows only 'Version' label — no build number unless clicked |
| Registry Check (Windows) | HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\16.0\Outlook\Setup\Version | IT admins verifying deployment consistency | Requires admin rights; not visible to standard users |
| macOS System Report | Apple menu > About This Mac > System Report > Software > Applications | Mac users confirming update status | No build breakdown — only version string (e.g., '16.85') |
| PowerShell (Windows) | Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Office\16.0\Outlook\Setup' | Select-Object Version | Bulk checks across devices via script | Fails if Outlook wasn’t installed via MSI (e.g., Click-to-Run) |
| Group Policy Reporting | Admins use 'Outlook Client Version' under User Configuration > Administrative Templates > Microsoft Outlook 2016/365 > Logging | Enterprise environments enforcing version compliance | Only logs if enabled beforehand; no retroactive data |
| Mobile App Settings | Settings > Help & Feedback > App Version | iOS and Android users checking patch level | Version string omits build date (e.g., '4.3203.0') — requires decoding |
Method Details
The Desktop About Box is your gold standard. Go to File > Account > About Outlook. What appears isn’t just 'Microsoft Outlook 365'. Look closely at the second line: Version 2405 (Build 17628.20128 Click-to-Run). That build number — 17628.20128 — tells you exactly when this version compiled. Microsoft uses year-week numbering: 17628 means it’s from week 28 of 2017? No — it’s actually the internal build counter. But here’s the counterintuitive tip: the last five digits often encode the date. In this case, 20128 maps to May 28, 2024. Not all builds follow this, but most current C2R versions do. You can verify by cross-referencing Microsoft’s public update history pages.
For Outlook on the web, scroll to the very bottom of your inbox. Click the tiny About link next to 'Privacy' and 'Terms'. A modal opens showing 'Version: 2405.1234.5678'. Unlike desktop, this version string includes both the release wave (2405 = May 2024) and a unique identifier. It updates silently — no restart needed. But beware: if your tenant is on a Targeted Release ring, your version may be 2–3 weeks ahead of General Availability. Admins control this via Settings > Org Settings > Update Preferences.
Outlook for Mac hides its age differently. Open Outlook, then click Outlook > About Outlook. You’ll see something like Version 16.85 (24041400). That trailing number — 24041400 — decodes to April 14, 2024. The pattern is YYMMDD followed by zeros. This is consistent across recent Mac releases (v16.79+), but earlier versions used semantic versioning only. Also note: Outlook for Mac doesn’t support VBA macros — a legacy gap tied directly to its younger architecture.
Keyboard Shortcuts
| Action | Windows Shortcut | Mac Shortcut |
|---|---|---|
| Open About Outlook | Alt+F → A | Cmd + , |
| Open Account Settings | Alt+F → T → A | Cmd + ; |
| Toggle Reading Pane | Ctrl+R | Cmd + R |
| Switch to Mail View | Ctrl+1 | Cmd + 1 |
Cheat Sheet
| Platform | How to Check Age | What to Look For | Sample Value |
|---|---|---|---|
| Windows Desktop | File > Account > About Outlook | Full build number (e.g., 17628.20128) | Version 2405 (Build 17628.20128) |
| Outlook on Web | Scroll footer → About | Version string with release wave | 2405.1234.5678 |
| Outlook for Mac | Outlook > About Outlook | YYMMDD-coded build suffix | 16.85 (24041400) |
| iOS / Android | Settings > Help & Feedback > App Version | Four-part numeric version | 4.3203.0 |
| Group Policy (Admin) | User Config > Admin Templates > Outlook > Logging | 'Outlook Client Version' policy enabled | Logs to Event Viewer under Application > Microsoft.Office.Outlook |
| PowerShell (Admin) | Get-ItemProperty HKLM:\SOFTWARE\Microsoft\Office\16.0\Outlook\Setup | 'Version' property value | 16.0.17628.20128 |