asked on
ASKER
ASKER
Set-MailboxDatabase -identity "Mailbox Database 0482295700" -CircularloggingEnabled:$true
Then unmount and mount the DB.Exchange is the server side of a collaborative application product that is part of the Microsoft Server infrastructure. Exchange's major features include email, calendaring, contacts and tasks, support for mobile and web-based access to information, and support for data storage.
TRUSTED BY
You could create a new disk and move users as well to free up space just make sure the new database is backed up.
You could also check for disconnected mailboxes.
Get-MailboxDatabase | Get-MailboxStatistics | Where { $_.DisplayName -eq "<display name>" } | fl DisplayName,MailboxGuid,Da
This will list all mailboxes that were deleted but might still be in the 30 day recoverable time. those can be removed by running this:
Get-MailboxStatistics -Database databasename | where {$_.DisconnectReason -eq "SoftDeleted"} | ForEach {Remove-StoreMailbox -Database $_.Database -Identity $_.MailboxGuid -MailboxState SoftDeleted}