Finding Maximum Recipient Limits for all the Mailboxes using Exchange Management Shell
Can some one help me fiding Maximum Recipient Limits for all the Mailboxes using Powershell or Exchange Management Shell ?
December 29th, 2010 1:22am

Hello, Use this command: Get-Mailbox | Select DisplayName,RecipientLimits And to export the result to an excel CSV file, use: Get-Mailbox | Select DisplayName,RecipientLimits | Export-CSV D:\MaximumRecipient Limits.csv Ibrahim Al Masry http://www.ibra.me/
Free Windows Admin Tool Kit Click here and download it now
December 29th, 2010 2:03am

Hi, Ibrahim’s reply is OK, and just in addition to his reply, simply add | Sort-Object –Property RecipientLimits –Descending after the cmdlet. Best regards, Serena Please remember to click Mark as Answer on the post that helps you, and to click Unmark as Answer if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
December 31st, 2010 12:26am

If you need this data for more than 1000 mailboxes, remember to use '-ResultSize unlimited' in the command. Get-Mailbox -ResultSize Unlimited | Select DisplayName,RecipientLimits | Export-CSV D:\MaxRecipientLimits.csv From Powershell - WARNING: By default only the first 1000 items are returned. To change the number of items returned, specify the parameter "-ResultSize". To return all items specify "-ResultSize Unlimited" (Note: Returning all items may take a very long time and consume a large amount of memory depending on the actual number of items). It is not recommended to store the results in a variable; instead pipe the results to another task or script to perform batch changes. - Thanks, Jinesh.
Free Windows Admin Tool Kit Click here and download it now
January 3rd, 2011 2:43am

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

Other recent topics Other recent topics