Archive for category Exchange Server
[Increase Mailbox Size] Exchange 2007
Posted by sink in Exchange Server on 六月 25th, 2009
Default size is 2GB/Per mailbox. You can’t change the size more than 2GB on GUI tools. You need to use shell script to modify the value.
Some example (4GB/Per user):
| Set-Mailbox -Identity paul@booxood.net -IssueWarningQuota 4097152000 -ProhibitSendQuota 4621440000 -ProhibitSendReceiveQuota 4936012800 -UseDatabaseQuotaDefaults $false
Set-Mailbox -Identity dennis@booxood.net -IssueWarningQuota 4097152000 -ProhibitSendQuota 4621440000 -ProhibitSendReceiveQuota 4936012800 -UseDatabaseQuotaDefaults $false Set-Mailbox -Identity francis@booxood.net -IssueWarningQuota 4097152000 -ProhibitSendQuota 4621440000 -ProhibitSendReceiveQuota 4936012800 -UseDatabaseQuotaDefaults $false |