User Tools

Site Tools


internet:mail:exchange:exchange_storage

This is an old revision of the document!


Microsoft Exchange Storage

Exchange 2013

Move Exchange Database

http://exchangeserverpro.com/exchange-2013-move-database-to-new-folder-path/

Adjust to meet your needs:

Move-DatabasePath "Mailbox Database 1480691381" -EdbFilePath "E:\Exchange\Mailbox Database 1480691381.edb" -LogFolderPath "E:\Exchange\Mailbox Database 1480691381"

Move Mailboxes to Another Database

Exchange 2010

Quotas

Show quota settings:

get-mailbox -server "server" -ResultSize unlimited | Where {$_.UseDatabaseQuotaDefaults -eq $false} | Sort-Object DisplayName | ft DisplayName,IssueWarningQuota,ProhibitSendQuota > C:\quota_exceptions.txt

Show quota usage:

get-mailbox -server "server" -ResultSize unlimited | Where {$_.UseDatabaseQuotaDefaults -eq $false} | Get-MailboxStatistics | Sort-Object DisplayName | ft DisplayName,@{label="TotalItemSize(MB)";expression={$_.TotalItemSize.Value.ToMB()}} > C:\quota_exceptions_size.txt
internet/mail/exchange/exchange_storage.1549758615.txt.gz · Last modified: 2019/02/09 17:30 by gcooper