Wednesday 9 March 2016

Managing Outlook clients mailbox rules on Exchange

To view current rules of a mailbox we can issue:

Get-InboxRule -Mailbox Mailbox01

And in order to look at a specific rule we can issue something like:

Get-InboxRule -Mailbox Mailbox01 -Identity "My Example Rule"

To delete a rule we can issue:

Remove-Inboxrule –Mailbox Mailbox01 -Identity "My Example Rule"

And using the Set-InboxRule and New-InboxRule cmdlets we can modify and create new rules - although to be honest it's quite often easier doing this on the client-side / Outlook.

0 comments:

Post a Comment