Link to home
Start Free TrialLog in
Avatar of defecta
defectaFlag for Australia

asked on

Exchange 2010 Powershell command for Checking/setting Mailbox send size limit?

Hi folks,

We are running Exchange 2010 on Windows Server 2008 R2.

Can someone please remind me what the Powershell command is for checking the email sending size limits in place on a users mailbox is? And the PS command for setting it?

I have done it once before but I cant for the life of me remember or google for it again.

Thanks in advance.
ASKER CERTIFIED SOLUTION
Avatar of suriyaehnop
suriyaehnop
Flag of Malaysia 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 lruiz52
Check link below, you can find what you need there;

http://help.outlook.com/en-us/140/gg576861.aspx
Hi,

Here is the cmdlet to know the sending size limit only one command will do all.

Get-MailboxStatistics "User alias" |fl
SOLUTION
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 defecta

ASKER

I worked out the command I needed to set the send limit from the command line.

set-mailbox [username] -maxsendsize [send size in bytes]

Thanks folks.