Set-MailboxDatabase -identity
List databases with content index in failed state:
Get-MailboxDatabaseCopyStatus -Server
Reset search index for particular database ( need to be in script directory - C:\Program Files\Microsoft\Exchange Server\Scripts):
.\ResetSearchIndex.ps1 -force
Update replication of catalog only on database:
Update-MailboxDatabaseCopy -identity
Update catalog index state only on all failed databases:
Get-MailboxDatabaseCopyStatus -Server em-bk-exmb01 | ? {$_.contentindexstate -eq "failed"} | update-mailboxdatabasecopy -catalogonly
No comments:
Post a Comment