From 72e65d92e16d765322d51f98ed77b5d1e882bbce Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Sat, 5 Jul 2025 16:26:08 -0600 Subject: [PATCH] Update Servers/Microsoft Exchange/Scripts/DAG/Database Management.md --- .../Microsoft Exchange/Scripts/DAG/Database Management.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Servers/Microsoft Exchange/Scripts/DAG/Database Management.md b/Servers/Microsoft Exchange/Scripts/DAG/Database Management.md index 28a1dd1..11c47f2 100644 --- a/Servers/Microsoft Exchange/Scripts/DAG/Database Management.md +++ b/Servers/Microsoft Exchange/Scripts/DAG/Database Management.md @@ -34,4 +34,10 @@ Resume-MailboxDatabaseCopy -Identity "DB01\MX-DAG-02" If this fails to cause replication to resume, you can try telling the database to just focus on replication, which tells it to copy the queues and replay them on the replica database, while avoiding interacting with the "**ContentIndexState**" which can be individually fixed in the commands below: ```powershell Resume-MailboxDatabaseCopy -Identity "DB01\MX-DAG-02" -ReplicationOnly -Update-MailboxDatabaseCopy -Identity "DB01\MX-DAG-02" -CatalogOnly -BeginSeed +``` + +### If `ContentIndexState` is Unhealthy +If you see that the "ContentIndexState" is unhappy, you can run the following command to force it to re-seed / rebuild itself. (This is non-destructive this this is happening on a replica database). +```powershell +Update-MailboxDatabaseCopy "DB01\MX05" -CatalogOnly -BeginSeed +```