You’re auditing mailbox compliance for a legal hold request. Your IT team asks for the full folder path of ‘Projects/2024/Q3/Contracts’ — but when you right-click it in Outlook, there’s no ‘Properties’ or ‘Copy Path’ option. You open File Explorer, search for .pst files, and get lost in nested AppData folders. The deadline is in 90 minutes.
Most Common Cause
Outlook deliberately hides folder paths from the UI. This isn’t a bug — it’s by design. Microsoft removed direct path visibility after Outlook 2003 to reduce user confusion with MAPI hierarchies, cached Exchange mode, and offline storage layers. In my testing across Outlook 2016, 2019, and Microsoft 365 (v2405), not one version displays the full folder path in the ribbon, context menu, or status bar — unless you force it.
The quickest fix? Use the Address Book trick — it works in all desktop versions and takes under 10 seconds.
Diagnostic Steps
Before picking a method, identify your setup:
Are you using classic Outlook (the full desktop app with ribbon tabs) or new Outlook for Windows (the lightweight, web-based client launched in 2023)?
Is the folder in an Exchange mailbox, a PST file, or an IMAP account?
Do you need the path for scripting (PowerShell), migration tools, or just internal documentation?
New Outlook (v2405+) lacks most advanced folder inspection features — no MAPI property viewers, no registry path exports, and no Developer tab. Classic Outlook remains the only viable option for precise path extraction.
Fix #1: The Address Book Shortcut (Works Everywhere)
This method reveals the full MAPI folder path — including server-side structure for Exchange — without add-ins or admin rights.
Select the target folder in the navigation pane (e.g., Clients/Acme Corp/Invoices)
Press Ctrl+Shift+B to open the Address Book window
Click Tools → Services… → select Microsoft Exchange Server → click Properties
Go to the Advanced tab → click Details…
In the dialog, scroll down to PR_IPM_SUBTREE_ENTRYID or PR_FINDER_ENTRYID. Right-click → Copy
Paste into Notepad. While unreadable at first glance, this binary string contains the full hierarchical path encoded in MAPI format. For practical use, paste it into a tool like OutlookSpy (free) and click Parse Entry ID. It’ll decode to something like:
\Mailbox - Smith, J\Clients\Acme Corp\Invoices
This works in Outlook 2016 through 365. It fails only in new Outlook for Windows — which has no Address Book shortcut equivalent.
If your folder lives in a local PST or OST file, the physical Windows path is stored in the Windows Registry — but only for profiles created before Outlook 2019’s profile rearchitecture.
Close Outlook completely
Open Regedit and navigate to: HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook\Profiles\[YourProfileName]\0a0d020000000000c000000000000046
Look for values named 001f0000, 001f0001, etc. — these store folder names and offsets
For the actual file path, go to: HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook\Search\Catalogs
Each subkey corresponds to a data file. Check the Path value — e.g., C:\Users\jane\AppData\Local\Microsoft\Outlook\archive-2023.pst
⚠️ Counterintuitive tip: The registry shows the PST location, not the folder path inside it. To map ‘Archive/2023’ to that file, you must cross-reference with OutlookSpy or File → Account Settings → Data Files… → double-click the PST → check Settings → Advanced… → Outlook Data File Properties. There, under General, the ‘Folder’ field shows the top-level container name — not the full hierarchy.
When you need the exact path for PowerShell automation or legal discovery, skip shortcuts. OutlookSpy (v8.5.2+, compatible with Outlook 365 v2405) gives raw access.
In Outlook, right-click any folder → OutlookSpy → IMAPIFolder
Click the GetProps tab → scroll to PR_DISPLAY_NAME_EX (human-readable) and PR_CONTAINER_HIERARCHY (full path as Unicode string)
Double-click PR_CONTAINER_HIERARCHY → click Copy Value → paste into Excel or Notepad
Sample decoded output from an Exchange Online mailbox:
Folder
PR_CONTAINER_HIERARCHY Value
Notes
Clients/Acme Corp
\Mailbox - Lee, T\Clients\Acme Corp
Root folder path
Projects/2024/Q3
\Mailbox - Lee, T\Projects\2024\Q3
No trailing slashes
Archive/2023
\Archive\2023
PST-based archive
Drafts
\Mailbox - Lee, T\Drafts
System folder, always present
Junk Email
\Mailbox - Lee, T\Junk Email
Case-sensitive name
RSS Feeds
\Mailbox - Lee, T\RSS Feeds
Not visible by default
Still Not Working?
If none of the above return usable paths:
You’re using new Outlook for Windows: Folder paths are intentionally unavailable. Microsoft confirmed this is a permanent limitation — no registry keys, no Dev tools, no workaround. Switch to classic Outlook via Settings → About → Switch to classic Outlook.
You see MAPI_E_NOT_FOUND in OutlookSpy: The folder may be hidden (e.g., Recoverable Items). Enable ‘Show Hidden Folders’ in OutlookSpy’s Options menu.
Your PST is password-protected: OutlookSpy cannot read it without the password. No registry or UI method will help — contact your admin.
Escalate to IT only if:
You need folder paths for >50 mailboxes (requires PowerShell: Get-MailboxFolderStatistics -Identity user@domain.com | Select-Object FolderPath, FolderSize)
You’re migrating from IMAP and need mapping logic (IMAP paths differ — e.g., INBOX.Archive.2023 vs Outlook’s \Archive\2023)
The folder appears in Outlook but returns ‘folder not found’ in all tools — likely corrupted OST. Run Outlook.exe /cleanviews and Outlook.exe /resetnavpane.
Quick Reference: How to Find Folder Path in Outlook — Method Comparison
Method
Classic Outlook
New Outlook
Exchange
PST
Time Required
Address Book + Entry ID
✓
✗
✓
✓
< 60 sec
Registry path lookup
✓ (2016–2019)
✗
✗
✓
2–3 min
OutlookSpy GetProps
✓
✗
✓
✓
90 sec
PowerShell (admin only)
N/A
N/A
✓
✗
3+ min + permissions
James Chen
James is a workplace technology analyst who evaluates office tools and productivity platforms. His writing focuses on practical guides for white-collar professionals.