Click - Nitin Gupta's HomePage
Go to HOMEPAGE
Nitin Gupta's Leaf
<%Response.Write(Date())%>
 

Quick Tip - Working with Mailboxes (Set-Mailbox)

I have come across this question many a times “When I want to set Quota on multiple mailboxes at a time using Set-Mailbox cmdlet, it works, but when I try some other option to be set on multiple mailbxoes it does not work” - Yes, this has always been the case, for many attributes like RecipientLimit you got to set them on per mailboxes basis.

Let us look at some example here to explain things better….

Objective 1: To set maximum Message Size for sending messages to 2 MB for all users in “Finance” OU

So how would you go about it, first thing first, find all mailboxes in Finance OU, the command would be Get-Mailbox -OrganizationalUnit “Finance”

Great now the logical step would be pipe the output to Set-Mailbox, here is how: Get-Mailbox -OrganizationalUnit “Finance” | Set-Mailbox -MaxSendSize 2097152

Voila you are done, all Mailboxes for Finance OU can now send mails with maximum size of 2 MB

Objective 2: To set Recipient Limit per messages to 5 for all users in “Finance” OU

Using the same logic as above example, this should work right Get-Mailbox -OrganizationalUnit “Finance” | Set-Mailbox -RecipientLimit 5

Yes, you got it, it didn’t work. Reason, well the Attribute MaxSendSize can be set on Multiple mailboxes at at time, where as RecipientLimit can only be set on a per mailbox basis. So what would be the solution for that, here it is

ForEach ($mbx in Get-Mailbox -OrganizationalUnit “Finance”) { Set-Mailbox $mbx -RecipientLimits  5 }

Click here for Set-Mailbox


You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

AddThis Social Bookmark Button

8 Responses to “Quick Tip - Working with Mailboxes (Set-Mailbox)”

  1. markez linda said on:

    There is obviously a lot to know about this. I think you made some good points in Features also.

  2. JaneRadriges said on:

    Hi, gr8 post thanks for posting. Information is useful!

  3. Very nice information. Thanks for this.

  4. alex farguson said on:

    There is obviously a lot to know about this. I think you made some good points in Features also.

  5. Cafe World Secrets said on:

    Your article was very attention grabbing and was just what I was searching for.

  6. Mailbox Post said on:

    Informative and entertaining. I

  7. Brittany Llorca said on:

    Fantastic post! This could aid lots of people find out about this matter. Do you want to incorporate video clips together with these? It could undoubtedly help out. Your reason was spot on and owing to you; I probably won’t have to describe everything to my pals. I can simply direct them here

  8. Claudine Ramariz said on:

    Hello - I must say, I’m impressed with your site. I had no trouble navigating through all the tabs and information was very easy to access. I found what I wanted in no time at all. Pretty awesome. Would appreciate it if you add forums or something, it would be a perfect way for your clients to interact. Great job

Leave a Reply

« An English Evening - Football & Beer !