Find mailboxes with specific Throttling Policy
Get-Mailbox | where-object {$_.ThrottlingPolicy -eq "AppTHPolicy1"} This should be the exact command to listout all users on AppTHPolicy1 throttling policy. Good luck !Shaba
March 13th, 2012 6:37am

We are running Exchange 2010. Most users are on the default Throttling Policy, but we have some bespoke applications that have service accounts, and for those service accounts we have created some extra Throttling Policies. One of those Policies is named AppTHPolicy1. What I'd like to do is get a list of all mailboxes with AppTHPolicy1 applied to them. Does anyone know how this is possible? I know how to find out which Throttling Policy is applied to a mailbox (get-mailbox -identity MBX1 | fl throttlingpolicy), but not sure how to do this the other way around?
Free Windows Admin Tool Kit Click here and download it now
April 27th, 2012 9:00pm

Try this Get-Mailbox | where-object {$_.ThrottlingPolicy -eq $policy.Identity} Shaba
April 27th, 2012 11:40pm

Get-Mailbox | where-object {$_.ThrottlingPolicy -eq "AppTHPolicy1"} This should be the exact command to listout all users on AppTHPolicy1 throttling policy. Good luck !Shaba
Free Windows Admin Tool Kit Click here and download it now
April 27th, 2012 11:44pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics