With the introduction of Windows 2008 Server, unfortunately
the back-up possibilities have been limited to the absolute
basic. But...there is DPS 2007 which supports all the stuff
and more...

As I'm running Windows 2008 EE x64 with Exchange 2007 on a
single server, I searched for a solution for being able to
back-up both files and state and Exchange. As up till now I'm
still searching as it turns out that DPS can't be installed
on a DC.

Looking forward how Microsoft solved this in the SBS2008
environment...


 
Categories: Exchange 2007 | Windows 2008

August 29, 2008
@ 09:46 PM
The following command line will provide you with a list of the Exchange 2007 send connector max send sizes:
 
get-sendconnector | list Identity,MaxMessageSize
 
The following command line will let you set the Exchange 2007 send connector settings:
 
set-sendconnector "[Connector Name]" -MaxMessageSize #MB
 
The following command line will provide you with a list of the Exchange 2007 receive connector max send sizes:
 
get-receiveconnector | list Identity,MaxMessageSize
 
The following command line will let you set the Exchange 2007 receive connector settings:
 
set-receiveconnector "[Connector Name]" -MaxMessageSize #MB
 
The following command line will provide you with a list of the Exchange 2007 transport information:
 
get-transportconfig
 
Microsoft site on managing size limits:

http://technet.microsoft.com/en-us/library/bb124345.aspx


 
Categories: Exchange 2007