Why does Outlook 365 show version numbers from 2000 in Help > About? Why do some legacy .pst files open fine in Outlook 2019 but crash in Outlook 2024? Why does Microsoft still ship a ‘Windows Messaging’ folder inside C:\Program Files\Microsoft Office\root\Office16\ — and what the hell is it doing there?
The answer isn’t one date. It’s three dates — each tied to a different architecture, a different team, and a different reason your boss’s meeting invite from 2003 won’t render correctly on your M365 account.
The Short Version
| Method | Pros | Cons | Best For |
|---|---|---|---|
| File > Account Settings > About Outlook | Shows build number + release year of installed binary | Hides original codebase lineage (e.g., Windows Messaging roots) | Verifying patch level before troubleshooting |
| Registry key: HKLM\SOFTWARE\Microsoft\Office\16.0\Outlook\Setup\Version | Reveals actual installer timestamp, even for sideloaded builds | Requires admin access; no UI path; registry edits risky | IT admins auditing deployment timing across 200+ machines |
| Check PST creation date via File Explorer properties | Ties data to *actual* user adoption — not Microsoft’s marketing | Fails if PST was copied or migrated (timestamps reset) | Forensic timeline reconstruction during eDiscovery |
| Exchange Server version + mailbox creation date (via PowerShell) | Most accurate for cloud-era users; ties Outlook client to backend reality | Useless for standalone POP3/IMAP accounts; requires Exchange admin rights | M365 tenants migrating from on-prem Exchange 2010 |
Method 1: File > Account Settings > About Outlook
Go to File > Account Settings > Account Settings… > About Outlook. Click it. You’ll see something like:
Microsoft Outlook 2021 (Version 2308 Build 16.0.16731.20148)
This tells you when this copy was compiled — not when Outlook as a product launched. That build number maps to August 2023, but the core MAPI subsystem? It shipped with Windows NT 3.51 in 1995. And the UI framework? Borrowed from WordPerfect Office 3.1 (1993), which Microsoft licensed after acquiring the rights post-bankruptcy.
You’ll notice the ‘About’ window doesn’t mention ‘Windows Messaging’, even though that’s the engine Outlook replaced. That’s intentional. Microsoft buried that history because ‘Windows Messaging’ had terrible Unicode support — which still causes garbled subject lines in emails sent from Outlook 2000 to modern Outlook Web App.
Limitation: This method lies by omission. It shows recency, not ancestry. Use it only to confirm you’re patched — not to trace origins.
Method 2: Registry Key Lookup
Press Win + R, type regedit, then navigate to:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\16.0\Outlook\Setup\Version
Look at the InstallDate REG_DWORD value. Convert it from decimal to a date: 1321952400 = December 1, 2019. That’s when this machine got Outlook 2019 — not when Outlook was made.
But go deeper: check HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Messaging Subsystem\. You’ll find MAPIVER = 1.0. That’s the 1992 spec. The same one used in Windows Messaging 3.0, which shipped with Windows 3.1 in April 1992.
Here’s the counterintuitive part: Outlook 365 still uses MAPI 1.0 under the hood for compatibility — even though Microsoft claims it’s ‘modern MAPI’. So yes, your shiny new M365 account talks to Exchange using protocols designed before the web existed.
This method works best for IT teams verifying whether a workstation got a clean install or an in-place upgrade. If InstallDate matches your OS install date, it’s likely clean. If it’s older, someone reused the image — and may have inherited broken MAPI profiles from another user.
Method 3: PST Creation Timestamp + Exchange Mailbox Date
Right-click any .pst file in File Explorer → Properties → Details tab. Look for ‘Date created’. That’s when the user first saved email locally. Not when Outlook launched — but when they started using it.
Real-world example: A PST dated March 1997 in C:\Users\jdoe\Documents\Outlook Files\Clients/Acme Corp.pst means that user adopted Outlook right after the Office 97 launch — not the original 1992 Windows Messaging release.
For Exchange users, run PowerShell as admin:
Get-Mailbox jdoe | Select-Object DisplayName, WhenMailboxCreated, Database
You’ll get back WhenMailboxCreated : 10/15/2014 09:22:11. That’s when their mailbox lived — and thus when their Outlook client first synced against a real server.
Surprising tip: Outlook Web App (OWA) doesn’t use PSTs. Its ‘creation date’ is whatever Exchange server version first hosted the mailbox — not the browser version. So if your OWA says ‘Outlook on the web – Version 23.100’, that’s meaningless. The real date is the Exchange CU version (e.g., Exchange 2019 CU12, released May 2023).
Limitation: This method assumes local file access or Exchange admin rights. It fails completely for IMAP-only accounts or users who never saved anything offline.
Which Should You Choose?
If you’re a helpdesk agent: Start with File > Account Settings > About Outlook. Fast. Non-invasive. Tells you whether the user is on a known-bad build (like 16.0.16501.x, which broke shared calendar delegation).
If you’re an auditor or eDiscovery specialist: Pull both PST timestamps and Exchange mailbox creation dates. Cross-reference them. Discrepancies mean migration artifacts — or evidence of manual PST copying (a red flag in legal holds).
If you’re an Exchange admin rebuilding hybrid infrastructure: Check the registry MAPIVER on all Outlook clients. Anything below 1.25 breaks modern OAuth token binding. Yes — that means Outlook 2013 SP1 (MAPI 1.23) can’t talk securely to Exchange Online without a registry hack.
And if you’re just trying to settle an argument at lunch? Here’s the unfiltered truth:
- Windows Messaging shipped April 1992 — the true origin.
- Outlook 97 launched January 1997 — the first version branded ‘Outlook’.
- Outlook 2000 (September 1999) added native Exchange 2000 support — the moment it stopped being a PIM and became an enterprise tool.
- Outlook 365 (2013) didn’t change the core engine — just how updates roll out.
So no, Outlook wasn’t ‘made’ in 1997. It evolved — and your current version is running code written before Google existed.
| Action | Shortcut | Alt Sequence | Notes |
|---|---|---|---|
| Open About Outlook | None (UI only) | Alt+F, A | Works in all desktop versions since Outlook 2003 |
| Toggle Navigation Pane | Ctrl+8 | Alt+W, J | Essential for spotting legacy folders like ‘Archive/2023’ vs ‘Projects/2024/Q3’ |
| Open Folder Properties | Alt+Enter | N/A | Works on any folder — including ‘Clients/Acme Corp’ — to view creation time |
| Switch to Exchange Mode | Ctrl+Shift+M | Alt+H, M | Only visible if connected to Exchange — reveals server-side folder dates |
| View Message Header | Alt+H, H | N/A | Shows Received: headers — often more reliable than local timestamps |