Setting a Global Recipient Limit on Exchange 2007
On Exchange 2007 , it is set up to 5000 user defaultly, you can check and configure this limit by Microsoft Exchange PowerShell
Checking the Limit :
[PS] C:\Windows\System32>Get-TransportConfig | Format-List MaxRecipientEnvelopeLimit
MaxRecipientEnvelopeLimit : 150
Setting up a new limit :
[PS] C:\Windows\System32>Set-TransportConfig -MaxRecipientEnvelopeLimit:250
Checking its work:
[PS] C:\Windows\System32>Get-TransportConfig | Format-List MaxRecipientEnvelopeLimit
MaxRecipientEnvelopeLimit : 250
Comments
Post a Comment