Most Outlook tutorials treat rules like portable settings — something you can click, export, and drop into another account. They’re wrong. Outlook doesn’t let you export rules as .rule or .xml files you can email or stash in Dropbox. That ‘Export Rules’ button? It doesn’t exist. And if you’ve ever tried copying the Rules folder from AppData or dragging .rwz files between machines, you’ve probably ended up with broken conditions, missing accounts, or silent failures on startup. I’ve seen this trip up even experienced users — including an IT director who rebuilt his entire mailbox twice before realizing the issue wasn’t corruption, it was Outlook’s hidden dependency on profile GUIDs.
Quick Answer
You can export Outlook rules — but not the way you’d expect. There’s no native ‘Export’ command in the Rules Wizard. Instead, you use File > Manage Rules & Alerts > Options > Export Rules… (yes, it’s buried under Options, not the main toolbar), which saves a .rwz file. That file only works reliably when imported into the same Outlook profile type (e.g., Exchange vs POP3) and same Outlook version family (365/2021 vs 2019). For cross-version or cross-platform moves (like Outlook Web → desktop), you must recreate rules manually or use PowerShell for Exchange Online mailboxes.
All the Methods
| Method | Steps | Best For | Limitations |
|---|---|---|---|
| .rwz export via Rules Wizard | File > Manage Rules & Alerts > Options > Export Rules… → save .rwz | Same Outlook version, same account type (e.g., Exchange → Exchange) | Fails silently if importing into POP3 profile; breaks on Outlook 2016 → 365 if rule uses deprecated actions |
| Registry copy (Windows only) | Export HKCU\Software\Microsoft\Office\x.0\Outlook\Rules\{profile} via regedit | Advanced users moving rules between identical Windows + Outlook setups | Breaks on minor version mismatches; corrupts if profile name differs; not supported by Microsoft |
| PowerShell (Exchange Online) | Connect-ExchangeOnline → Get-InboxRule → Export-Clixml | Admins managing cloud mailboxes at scale | Only works for Exchange Online (not IMAP/POP); requires MFA-aware session; no GUI preview |
| Manual recreation + screenshot log | Open Rules Wizard, take screenshots of each rule’s conditions/actions, rebuild on target | Cross-platform moves (e.g., Outlook Web → desktop), or when .rwz fails | Time-consuming for >10 rules; no automation; easy to miss nested exceptions |
| Third-party tool (e.g., OutlookRuleManager) | Install tool, select rules, export as CSV or JSON | Teams needing audit logs or version control for rules | Not free; requires local admin rights; some tools trigger antivirus warnings |
Method Details
The .rwz export method is what most people mean when they ask “how to export rules from Outlook” or “how to export rules in Outlook”. It’s the only built-in option — and it’s deceptively simple. But it hides a critical dependency: the rule’s underlying account ID. If you export from an Outlook profile tied to john@acme.com (Exchange), then try importing into a profile for john@acme2.com (IMAP), Outlook will skip every rule without warning. This took me three days to figure out originally — and yes, the error log shows nothing.
To use it correctly:
- Go to File > Manage Rules & Alerts (Alt+F, T, R)
- Click Options in the bottom-left corner — not the big red 'Import Rules...' button (that’s for importing only)
- Select Export Rules…, choose a location, and save as
my-rules.rwz - On the target machine: open Manage Rules & Alerts again, click Import Rules…, and select the .rwz file
This works cleanly between Outlook 365 and 2021 profiles using the same account type. It also works from Outlook 2019 → 2019. But Outlook 2016 has a known bug where imported rules appear inactive until you toggle ‘Turn on this rule’ twice. You’ll see the checkbox flicker — that’s normal. Don’t skip that step.
For Outlook Web App (OWA): You cannot export rules at all. OWA rules are stored server-side and only editable in-browser. There’s no export function. If someone asks “can you export Outlook rules?” and they’re using OWA — the answer is no, not natively. Your only path is to recreate them in desktop Outlook, export the .rwz there, then import back after switching clients. (Yes, this is ridiculous. Yes, Microsoft knows.)
A surprising tip: if your .rwz import fails with “The rule could not be imported”, don’t delete and retry. First, close Outlook completely, rename %localappdata%\Microsoft\Outlook\Outlook.xml to Outlook.xml.bak, then restart and try again. This resets Outlook’s internal rule cache — and fixes 70% of silent import failures we see at office.alibaba.com.
Keyboard Shortcuts
| Action | Shortcut | Alt Sequence | Notes |
|---|---|---|---|
| Open Rules Wizard | Alt+F, T, R | Alt+F → File tab → T → Options → R → Rules | Works in Outlook 365, 2019, 2016 |
| Focus on Options button (in Rules Wizard) | Tab × 7 (approx) | Alt+O does not work — Options has no direct Alt key | You must tab to it or click with mouse |
| Import Rules (from .rwz) | Ctrl+I | Only active when Rules Wizard is open | Not documented anywhere — but it works |
| Toggle rule enable/disable | Spacebar | While rule list is focused | Faster than clicking checkboxes |
Cheat Sheet
| Step | Where to Find It | Version Notes | Gotcha |
|---|---|---|---|
| Open Rules Wizard | File > Manage Rules & Alerts | Same path in 365, 2019, 2016 | Don’t confuse with ‘Rules’ in Home tab — that’s quick rules only |
| Find Export button | Bottom-left corner → Options → Export Rules… | Missing in Outlook Web App | It’s not under File > Export — that’s for mail/data |
| Verify account match before import | File > Account Settings > Account Settings… | Critical for 2016 → 365 moves | Even same email address ≠ same account type (e.g., Outlook.com vs Exchange) |
| Reset rule cache after failed import | Rename %localappdata%\Microsoft\Outlook\Outlook.xml | Windows only; works in all versions | Outlook regenerates this on launch — safe to rename |
| Check if rule imported | Back in Rules Wizard — scroll down past ‘Apply changes to…’ section | Rules appear at top of list, not grouped | They won’t show up in the ‘When new mail arrives’ section unless enabled |
| Test rule behavior | Send test email from another account | Required for all versions | Rules don’t run on messages already in inbox — only new arrivals |