You’re switching laptops after IT reimaged your old one. Your inbox is clean, but your carefully built rules — the ones that auto-file vendor invoices into Finance > Invoices, flag urgent messages from Michael Rodriguez with red follow-up flags, and delete all "Meeting Reminder" spam — are gone. You open Outlook, click around for 12 minutes, and finally type "how to import rules in Outlook" into Google. That’s when you hit the wall.
The Problem
Outlook rules aren’t stored like emails or contacts. They live in your profile’s hidden configuration layer — not in PST/OST files, not in the cloud, and definitely not in your Documents folder. When you reinstall Windows, migrate to a new PC, or switch from classic Outlook to the new Outlook for Windows, your rules vanish without warning. No prompt. No backup reminder. Just silence.
This hits power users hardest: finance analysts who route 200+ supplier emails daily, legal admins managing case correspondence, and HR coordinators filtering onboarding requests by department and manager. They rely on rules to stay above water. And yet Microsoft ships Outlook with zero automatic rule export/import visibility — no toolbar button, no ribbon icon, no right-click menu option labeled "Export Rules."
The confusion deepens because "how to import rules in new Outlook" returns completely different answers than "how to import rules in Outlook" — and most guides don’t clarify which version they’re describing. Worse: the new Outlook (released mid-2023) doesn’t support rule imports at all. Not yet. Not ever, according to Microsoft’s current documentation.
The Fix
The only working method for classic Outlook (365, 2021, 2019, 2016) is via the Rules and Alerts dialog — but you must start from the import side, not the export side. People always try to “import” from File > Open — that won’t work.
Here’s the exact path:
- Open Outlook (classic desktop version only)
- Press Alt+H, then R, then R — or go to Home tab → Rules dropdown → Manage Rules & Alerts…
- In the dialog box, click Options… (bottom left corner — easy to miss)
- Click Import Rules…
- Browse to your
.rwzfile (not .txt, not .xml, not .pst) - Select it and click Open
If the import succeeds, you’ll see a confirmation: "X rules imported." If it fails? Nothing. No error. Just silence — and your rules stay missing.
That’s why step 3 matters: Options… is buried. It’s not under File > Options. It’s *inside* the Rules and Alerts dialog. This trips up even seasoned admins.
The beauty of this approach is that it preserves rule order, conditions, exceptions, and even custom actions like "assign category" or "move to folder with specific path." But — and this is critical — the target folder structure must already exist. If your rule says "move to \Finance\Invoices" but that folder doesn’t exist in your current profile, the rule imports but stays disabled. Outlook won’t create folders for you.
If That Doesn't Work
When Import Rules… does nothing or claims "0 rules imported," try these — ranked by success rate:
- Check Outlook version compatibility: A .rwz file exported from Outlook 2016 often fails in Outlook 365 (v2308+), and vice versa. Try opening the source Outlook version first, exporting again, then importing.
- Manually re-create high-value rules: Use Alt+H → R → Create Rule… → Advanced Options. Paste conditions from your old rule list (you did save them as plain text, right?).
- Copy the entire Outlook profile: If both machines run Windows and use the same Outlook version, copy the
%localappdata%\Microsoft\Outlook\RoamedRulesfolder (if present) — but only if both profiles use the same account type (Exchange vs IMAP). - Use PowerShell (Outlook 365 only): Run Outlook as Administrator, then paste this in PowerShell ISE:
$outlook = New-Object -ComObject Outlook.Application
$rules = $outlook.Session.DefaultStore.GetRules()
$rules.Import("C:\temp\myrules.rwz")
Surprising tip: Rename your .rwz file to .txt, open it in Notepad, and scan for folder paths like "\\Inbox\\Urgent". If those folders don’t exist *exactly* — including backslashes and casing — the rule fails silently on import. Fix the folder structure first.
Preventing It Next Time
Export rules before any major change — not after. Do it quarterly, or right after adding a new rule. Here’s how:
- In Rules and Alerts dialog, click Options…
- Click Export Rules…
- Save as
rules_20240615.rwzin a synced OneDrive folder — not Desktop, not Downloads.
Label each export with date + Outlook version (e.g., rules_20240615_365_v2308.rwz). Why? Because rule syntax changes subtly between versions. An export from Outlook 365 v2402 may fail in v2312.
Also: never assume rules sync across devices. Exchange accounts sync only server-side rules — and only if you’re using Exchange Online (not on-prem Exchange Server). IMAP and POP3 rules never sync. They’re local-only.
Related Settings
These settings directly impact whether imported rules activate, run, or break:
| Setting Name | Location | Options | Recommendation |
|---|---|---|---|
| Run rules now on startup | File > Options > Mail > Send Messages section | ✓ Process messages in Inbox automatically | Enable — otherwise imported rules sit idle until you manually run them |
| Server-side rule limit | Exchange Admin Center > Recipients > Mailboxes > [User] > Mailbox features > Rules | Max 64 KB total size, max 32 rules | If importing >30 rules, check size — combine low-priority ones first |
| New Outlook compatibility | Settings > Mail > Rules (in new Outlook) | Read-only view only. No import, no edit, no creation | Stick with classic Outlook for rule management — new Outlook is still missing core rule functionality |
| Rule processing order | Rules and Alerts dialog → check order top-to-bottom | Rules execute in listed order. Stop Processing stops further checks. | Always place high-priority rules (e.g., "delete phishing alerts") at the top |
| IMAP rule storage | File > Account Settings > Account Settings > double-click IMAP account | Rules stored locally only — no sync possible | Export .rwz files manually after every major IMAP rule change |
Final note: If you’re asking "how to import rules in new Outlook," stop. It’s not possible today — and won’t be for the foreseeable future. Microsoft confirmed in April 2024 that rule import/export remains unsupported in the new client. Use classic Outlook for anything involving rule migration. Keep both installed if you need flexibility.