In order to check what databases you have use the cmdlet
get-MailboxDatabase
This will show you the mail server and the database running on it. It will also show recovery and replication type which we will cover later.
Quota
To set a quota on an organisation use the cmdlet below. Change the word in red to your organisation name and change the quota numbers to what you would like set(in bits)
Get-Mailbox -Organization Name | set-mailbox -IssueWarningQuota 235929600 -ProhibitSendQuota 262144000 -ProhibitSendReceiveQuota 262144000 -UseDatabaseQuotaDefaults $false
To set an individuals quota use the cmdlet below. Remember to change the bits in Red to match your organisation.
Get-Mailbox "Mailbox" -Organization Name | set-mailbox -IssueWarningQuota 235929600 -ProhibitSendQuota 262144000 -ProhibitSendReceiveQuota 262144000 -UseDatabaseQuotaDefaults $false
To check the individual quota use the cmdlet below. Remember to change the bits in Red to match your organisation.
Get-Mailbox "Joe Blogs" -Organization Orgname | Format-List *Quota
No comments:
Post a Comment