Check And Remove Mailbox From Quarantine exchange 2016 December 11, 2016 admin 0 Microsoft Exchange 2016, To check all server: Get-Mailbox | Get-MailboxStatistics | Where {$_.IsQuarantined –eq $True} Single : Get-MailboxStatistics...
How to Balance Exchange Database by Activation Preference December 11, 2016 admin 0 Microsoft Exchange 2010, Microsoft Exchange 2013, Microsoft Exchange 2016, Open Exchange Powershell: cd "C:\Program Files\Microsoft\Exchange Server\V14\Scripts" To check db state: .\RedistributeActiveDatabases.ps1 -DagName "Your_DAG_Name" -ShowDatabaseDistributionByServer...
How to repair mailbox on exchange server December 11, 2016 admin 6 Microsoft Exchange 2010, Example 1: New-MailboxRepairRequest -Mailbox tony@contoso.com -CorruptionType FolderView Example 2: This example only detects...
How to import users into exchange with a Powershell script December 11, 2016 admin 0 Microsoft Exchange 2010, Download the files to a folder of you choice and edit in the ps1 script...
How to find exchange database with Circular Logging December 11, 2016 admin 0 Microsoft Exchange 2010, show database with Circular Logging : Get-MailboxDatabase | where {$_.CircularLoggingEnabled -eq $true} | out-gridview Without...
How to delete emails from exchange profiles December 11, 2016 admin 0 Microsoft Exchange 2010, As Admin you can delete specific wrongly send emails from your users mailbox : Open...
How to change exchange Preferred Server For DB December 11, 2016 admin 0 Microsoft Exchange 2010, Open exchange Powershell Set-MailboxDatabaseCopy -identity {Database_Name\New_Server_Name} -ActivationPreference 1 Confirm: Get-MailboxDatabase 'Database_Name'|fl server, databaseCopies, activationPreference
How to delete exchange log file December 11, 2016 admin 0 Microsoft Exchange 2010, If you need to delete exchange log file in case of space problem or some...
How to fix index failed state on exchange with dag December 11, 2016 admin 0 Microsoft Exchange 2010, Open Exchange Powershell to get all the bad index: To get all the bad index:...
How to Get exchange health status December 11, 2016 admin 0 Microsoft Exchange 2010, To get exchange health status first open exchange Powershell , run the command : Get-MailboxDatabaseCopyStatus...