<link href="https://fonts.googleapis.com/css?family=Roboto:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic&amp;display=swap" rel="stylesheet"/>
1 minute reading time (289 words)

SOLVED: Outlook Error. The Out Of Office Rules cannot be displayed. The client operation failed.

SOLVED: Error when trying to turn on Automatic Replies (Out of Office) in Outlook. The Out Of Office Rules cannot be displayed. The client operation failed.

Outlook Error. The Out Of Office Rules cannot be displayed. The client operation failed.

You might also get another error "System resources are critically low"

This error is caused by a corrupt inbox rule and can be fixed by deleting the rules using PowerShell

Client-side Outlook rules and Exchange server-side inbox rules

Outlook client-only rules

Client-only rules use conditions or actions that are Outlook features. Client rules only run when you have Outlook open.

Exchange Online server-side rules

Server-side rules use Exchange Online conditions or actions. Server-side rules run on the mailbox in Office 365 and are not dependent on the Outlook client.

Get mailbox inbox rules using PowerShell Get-InboxRule

Get-InboxRule -Mailbox user@domain.com

Copy the rule identity. You'll need this to delete the inbox rule

Remove Outlook inbox rules using PowerShell Remove-InboxRule

Remove one inbox rule using -Identity

# Remove one inbox rule using -Identity
Remove-InboxRule -Mailbox user@domain.com -Identity 1125502695398965249 -Confirm:$false 

Remove all inbox rules for a mailbox

# Remove all inbox rules for a mailbox
Get-InboxRule -Mailbox "user@domain.com" | Remove-InboxRule 
...

Find Exchange Online Mailbox Hidden Inbox Rules using PowerShell - TechLabs

How to find Exchange Online mailbox hidden Outlook inbox rules using PowerShell and show the contents of rules to check for suspicious actions.

Related Posts

 

Comments

No comments made yet. Be the first to submit a comment
Already Registered? Login Here
Thursday, 25 September 2025
You can help support this website by buying me a coffee!
Buy Me A Coffee