Avatar of AXISHK
AXISHK
 asked on

Exchange 2010 DAG Status

Any action do I need to take for ContentIndex state failed after running get-mailboxdatabasecopystatus ? Tks


Name                                          Status          CopyQueue ReplayQueue LastInspectedLogTime   ContentIndex
                                                              Length    Length                             State
----                                          ------          --------- ----------- --------------------   ------------
UK\EX02                                       Healthy         0         0           3/12/2015 9:36:51 AM   Failed
HK\EX02                                       Healthy         0         0           3/12/2015 9:36:44 AM   Healthy
Exchange

Avatar of undefined
Last Comment
jmcg

8/22/2022 - Mon
jmcg

You can copy the good index onto the failed one:

[PS] C:\>Get-MailboxDatabaseCopyStatus * | where {$_.ContentIndexState -eq "Failed"} | Update-MailboxDatabaseCopy -CatalogOnly

Open in new window


From: Fix All Failed Exchange Database Content Indexes by Paul Cunningham at http://exchangeserverpro.com
AXISHK

ASKER
Tks. Will it cause any harm if I ignore it ? Will Exchange recover by itself ? Tks
ASKER CERTIFIED SOLUTION
jmcg

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
AXISHK

ASKER
Any idea ?
 [PS] C:\>Get-MailboxDatabaseCopyStatus <<<<  * | where {$_.ContentIndexState -eq "Failed"} | Update-MailboxDatabaseCo
py -CatalogOnly
    + CategoryInfo          : ParserError: (C:\>Get-MailboxDatabaseCopyStatus:String) [], ParentContainsErrorRecordExc
   eption
    + FullyQualifiedErrorId : UnexpectedToken

[PS] C:\Windows\system32>
Experts Exchange is like having an extremely knowledgeable team sitting and waiting for your call. Couldn't do my job half as well as I do without it!
James Murphy
AXISHK

ASKER
Sorry it works, Tks
jmcg

Glad I could help. I'm guessing that the line from Paul Cunninham was displaying a prompt that you had to trim off before pasting into a shell.