It`s simple when you know how ! Microsoft Exchange 2010 How to find exchange database with Circular Logging

How to find exchange database with Circular Logging

show database with Circular Logging :

Get-MailboxDatabase | where {$_.CircularLoggingEnabled -eq $true} | out-gridview

Without :

Get-MailboxDatabase | where {$_.CircularLoggingEnabled -eq $false} | out-gridview

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to Balance Exchange Database by Activation PreferenceHow to Balance Exchange Database by Activation Preference

Open Exchange Powershell: cd "C:\Program Files\Microsoft\Exchange Server\V14\Scripts" To check db state: .\RedistributeActiveDatabases.ps1 -DagName "Your_DAG_Name" -ShowDatabaseDistributionByServer | ft To Re-balance DB :   .\RedistributeActiveDatabases.ps1 -DagName "Your_DAG_Name" -BalanceDbsByActivationPreference