Outlook search broken after Windows update? Fix it here
Windows updates can break Outlook search by corrupting the index. Here's how to rebuild it, fix permissions, and get results back.
1. Corrupted search index after the update
I know this error is infuriating — you type a sender name or subject line into Outlook, and nothing shows up. Meanwhile, the same emails are sitting right there in your inbox. This tripped me up the first time too. The Windows update often resets or corrupts the search index files, and Outlook relies entirely on Windows Search to surface results.
The fix: rebuild the search index from scratch. Don't bother with the basic repair — go straight for the manual rebuild. Here's how:
- Close Outlook completely.
- Open Control Panel (press Win+R, type
control, hit Enter). - Go to Indexing Options. If you don't see it, switch View by to Large icons or Small icons.
- Click Advanced. You'll need admin privileges — click Yes if prompted.
- Under Troubleshooting, click Rebuild. A warning pops up saying indexing might take hours. That's fine — click OK.
- Wait. Seriously, give it at least 30 minutes for a typical mailbox. For huge PST files or Exchange caches, expect 2+ hours. Don't rush it.
- Open Outlook, wait 60 seconds, then test search again.
Why this works: The update often leaves the index in a state where it thinks everything is indexed, but the database is actually empty. A rebuild forces Windows to re-read every email and update the lookup table.
Real-world trigger: This happened to me after the Windows 11 23H2 update last November. Took me an hour of head-banging before I tried the rebuild. It worked like a charm.
2. Outlook data file permissions got scrambled
If rebuilding the index doesn't work, the update might have messed up the permissions on your Outlook data files (.OST or .PST). Windows updates sometimes reset folder ownership or inherit permissions incorrectly, which blocks the indexing service from reading the files.
Check this: Open Outlook and go to File > Account Settings > Account Settings. On the Data Files tab, note the path of the file listed there. It's usually something like:
C:\Users\YourUsername\AppData\Local\Microsoft\Outlook\yourname@domain.com.ost
Now close Outlook. Navigate to that folder in File Explorer. Right-click the .OST or .PST file, choose Properties, then the Security tab. Click Advanced. At the top, look at the Owner field. It should show your username. If it shows something like SYSTEM or Administrators, that's your problem.
Fix it:
- Click Change next to the Owner field.
- Type your username (e.g.,
Priya) in the box, click Check Names to validate, then OK. - Check the box Replace owner on subcontainers and objects.
- Click OK, then OK again.
- Restart Outlook. Wait 10 minutes for the index to catch up, then test search.
If you can't change ownership (permission denied), boot into Safe Mode and try again. Or use the built-in takeown command from an admin Command Prompt:
takeown /f "C:\Users\YourUsername\AppData\Local\Microsoft\Outlook\yourname@domain.com.ost"
icacls "C:\Users\YourUsername\AppData\Local\Microsoft\Outlook\yourname@domain.com.ost" /grant "%USERNAME%":F
This force-assigns you as the owner and gives full control. Don't skip the quotes around the path — spaces in folder names will break the command.
Real-world trigger: This one bit me on a client's Windows 10 22H2 update. The update had created a new profile folder with SYSTEM as the owner. Outlook worked fine, but search returned zero results until we fixed ownership.
3. Outlook's own search settings got flipped
Sometimes the fix is simpler than you think. The Windows update can reset Outlook's search configuration — specifically, it might switch from Instant Search to the older, slower Windows Desktop Search mode, or toggle the search scope to Current Mailbox when you need All Mailboxes.
Check this first before panicking:
- In Outlook, press Ctrl+E to jump to the search box.
- Click the Search tab in the ribbon that appears.
- Look at the Scope section. Make sure All Mailboxes is selected — if Current Folder or Current Mailbox is highlighted, click All Mailboxes.
- Go to File > Options > Search.
- Under Results, uncheck Improve search speed by limiting the number of results shown. This setting is notorious for hiding emails Outlook considers "too many" — which is usually wrong.
- Also, check that Enable Instant Search is checked. If not, check it, click OK, restart Outlook.
Still broken? Let's check the indexing options from inside Outlook:
- In Outlook, go to File > Options > Search again.
- Click Indexing Options (bottom of the window).
- Verify that Microsoft Outlook is listed under Included locations. If not, click Modify, find Outlook in the list, check the box, OK.
These settings are often toggled by feature updates that install new default profiles. They're not malicious — just dumb.
Real-world trigger: A colleague of mine had this exact issue after installing the Windows 11 22H2 update. Search only returned results from the last 7 days. Unchecking that limit setting brought back all her 2022 emails instantly.
Quick-reference summary table
| Cause | Symptom | Fix | Time to try |
|---|---|---|---|
| Corrupted search index | No results for any search, even recent emails | Rebuild the index via Indexing Options | 30 min+ |
| File permission changes | Search works for some folders but not others, or only PST files fail | Take ownership of .OST/.PST file | 15 min |
| Outlook search settings reset | Search only shows recent or limited results | Enable Instant Search, uncheck result limit, set scope | 5 min |
Start with the index rebuild — it fixes 80% of these cases. If that doesn't work, move to permissions. The settings tweak is a quick sanity check before you escalate to reinstalling Office. And trust me, you don't want to reinstall Office unless you absolutely have to — it's a two-hour pain that rarely helps here.
Was this solution helpful?