Link to home
Start Free TrialLog in
Avatar of SAM2009
SAM2009Flag for Canada

asked on

How to search a specific mailbox rule name in all mailboxes in Exchange 2010?

How to search a specific mailbox rule name in all mailboxes in Exchange 2010?
Avatar of Pawan Kumar
Pawan Kumar
Flag of India image

Hi Sam,
Please try this - , Not very sure if we can search specific by name.

 Get-InboxRule -Mailbox "account" | SELECT Name, Description | fl

Open in new window


Hope it helps!
Avatar of SAM2009

ASKER

Sorry but this search in one specific mailbox. I need to search in all mailboxes.
Avatar of Ivan
Hi,

just remove -Mailbox part.

Get-InboxRule <name_rule> | SELECT Name, Description | fl

Regards,
Ivan.
Avatar of SAM2009

ASKER

I think there is something missing because I got ">>". It looks like the cmd is waiting for something.
Get-Mailbox | Get-InboxRule <Rule_Name> | Select Name, Description | fl
Avatar of SAM2009

ASKER

Sorry but now I have this:

Get-InboxRule : The input object cannot be bound to any parameters for the command either because the command does not take pipeline input or the input and its properties do not match any of the parameters that take pipeline input.
Great ! that you got it.
Avatar of SAM2009

ASKER

Humm why great I just said it is not working?:-)
ASKER CERTIFIED SOLUTION
Avatar of Ajit Singh
Ajit Singh
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of SAM2009

ASKER

Thanks