Disclaimer: We hope that the information on these pages is valuable to you.
Your use of the information contained in these pages, however, is at your sole risk.
All information on these pages is provided "as -is", without any warranty, whether express or implied,
of its accuracy, completeness, fitness for a particular purpose, title or non-infringement,
and none of the third-party products or information mentioned in the work are authored, recommended, supported or guaranteed by site owners or operators.
Further, the site owners and operators shall not be liable for any damages you may sustain by using this information,
whether direct, indirect, special, incidental or consequential, even if it has been advised of the possibility of such damages.
Warning: main(/home/prosphot/public_html/smog/track/write_logs.php) [function.main]: failed to open stream: No such file or directory in /home/prosphot/public_html/blog/skins/leaf/footer.php on line 3
Warning: main(/home/prosphot/public_html/smog/track/write_logs.php) [function.main]: failed to open stream: No such file or directory in /home/prosphot/public_html/blog/skins/leaf/footer.php on line 3
Warning: main() [function.include]: Failed opening '/home/prosphot/public_html/smog/track/write_logs.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/prosphot/public_html/blog/skins/leaf/footer.php on line 3
Thu 04.10.08: Setting Limits on Exchange 2007 Servers
This is how I set the limits on our Exchange 2007 Organization using the command line.To set the Max Message Size of all of the Send Connectors to 20MB, use this command:
get-sendconnector | set-sendconnector -MaxMessageSize 20480KB
To set the Warning at 450MB, No Send at 500MB, and Unlimited send limits on ALL mail stores, I used this command:
get-mailboxdatabase | set-mailboxdatabase -IssueWarningQuoto 450MB -ProhibitSendQuota 500MB -ProhibitSendReceiveQuota "Unlimited"
Now I needed to set the Resource Mail Stores in RSG1 so that they have a ProhibitSendReceiveQuota of 550MB, so I used this command:
get-MailboxDatabase -StorageGroup "EX01\RSG1" | Set-mailboxdatabase -ProhibitSendReceiveQuota 550MB
Now I need to remove all limits from the Executive Mail store. To do this I used this command:
get-mailboxdatabase -storageGroup "EX01\ESG1" | set-mailboxdatabase -IssueWarningQuoto "Unlimited" -ProhibitSendQuota "Unlimited" -ProhibitSendReceiveQuota "Unlimited"
Now everything is set like we wanted, without having to hit every mail store with a GUI.
Item Rating Information....