Menu
Find entries by Category
Find blog entries by date
  May 2025  
Sun Mon Tue Wed Thu Fri Sat
     1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31

Previous    Next    Latest  

Changing message size limits on SBS Standard 2008 & 2011    
Mon, 08 Oct 2012 14:26

Email users today want to be able to send and/or receive messages with large attachments. By default Windows Small Business Server has built-in limits of 10 MB for both, shown below is a quick method to increase these limits.

This assumes a default SBS 2008/2010 environment, not an Exchange standalone (non-SBS) configuration and you have not edited the default send/receive connectors. If in doubt you can verify the connector names with the commands at the bottom.

To raise the current default limit from 10 MB to 25 MB (as an example) cut and paste the following 3 lines, one by one, into the Exchange Management Shell located under All Programs / Microsoft Exchange Server 20xx. You need to substitute your SBS server name for ServerName.

  1. Set-TransportConfig –MaxSendSize 25MB –MaxReceiveSize 25MB
  2. Set-ReceiveConnector “Windows SBS Internet Receive ServerName” –MaxMessageSize 25MB
  3. Set-SendConnector “Windows SBS Internet Send ServerName” –MaxMessageSize 25MB

Should you wish to review the current settings or connector names you can use the following commands:

Get-TransportConfig | ft name, MaxSendSize, MaxReceiveSize

Get-ReceiveConnector | ft name, MaxMessageSize

Get-SendConnector | ft name, MaxMessageSize
 
Get-mailbox | ft name, MaxSendSize, MaxReceiveSize

Comments  
Your comments