How to set Send / Receive message size for bulk mailboxes in Exchange 2013

Hi,

I want to set Send / Receive Message limit to 30MB for bulk Mailboxes, pls. help me how can i accomplish same...from powershall command followed by exact syntax.

September 16th, 2013 7:45am

What are bulk mailboxes?  And nobody can give you exact syntax because nobody knows your mail
Free Windows Admin Tool Kit Click here and download it now
September 16th, 2013 11:03pm

Hi,

I want to set Send / Receive Message limit to 30MB for bulk Mailboxes, pls. help me how can i accomplish same...from powershall command followed by exact syntax.

September 17th, 2013 12:33am

Hi,

Suppose i want to import mailboxes from CSV file, how to use it with the command and what should CSV file consists of?

Thanks

Free Windows Admin Tool Kit Click here and download it now
September 17th, 2013 12:41am

Adding to Tarique...

If you have the bulk users in a csv file, you can run the below command to set the limit

Import-csv "C:\Temp\bulkusers.csv" | Foreach-Object {Set-Mailbox -identity $_.Alias -MaxReceiveSize 30MB -MaxSendSize 30MB }

And your CSV file should have the bulk users like below

Alias

UsersAlias1

UsersALias2

....


September 17th, 2013 12:51am

Well,

create a  myuser.csv file with only one header  " userid" and enter "samAccountname" as its value in csv file as below:

userid

user1

user2

then  use below script :

foreach($user in import-csv c:\myuser.csv){get-mailbox $user.userid}|set-mailbox -MaxReceiveSize 30mb -MaxSendSize 30mb

Free Windows Admin Tool Kit Click here and download it now
September 17th, 2013 12:51am

Can i also add Maximum recipients no 1000 in the syntax?

September 17th, 2013 6:51am

Adding to Tarique...

If you have the bulk users in a csv file, you can run the below command to set the limit

Import-csv "C:\Temp\bulkusers.csv" | Foreach-Object {Set-Mailbox -identity $_.Alias -MaxReceiveSize 30MB -MaxSendSize 30MB }

And your CSV file should have the bulk users like below

Alias

UsersAlias1

UsersALias2

....


Free Windows Admin Tool Kit Click here and download it now
September 17th, 2013 7:49am

Not sure whose suggestion you are following..

You need to add below command 

set-mailbox -MaxReceiveSize 30mb -MaxSendSize 30mb -RecipientLimits 1000

September 17th, 2013 8:18am

Can i also add Maximum recipients no 1000 in the syntax?

Free Windows Admin Tool Kit Click here and download it now
September 17th, 2013 8:20am

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

Other recent topics Other recent topics