Forum Discussion
m_krone
Feb 05, 2020Brass Contributor
Microsoft Exchange Information Store service encountered a corrupt AD object
Having a problem with some ExchangeGuids. Does anyone seen that before? Couldnt find a solution as I also cannot find the GUID in Exchange or AD properties: Microsoft Exchange Information Store s...
Da_V777
Nov 13, 2020Copper Contributor
Identify what kind of mailbox it is, they are. It is likely they will be orphaned "In-Place Archive" HealthMailbox.
Get-MailboxStatistics -StoreMailboxIdentity <Mailbox GUID> -Database <Database GUID>
Then, remove it:
Remove-Mailbox -Database <Database GUID> -StoreMailboxIdentity <Mailbox GUID>
Automatically identify mailboxes:
(<Mailbox GUID 1>, <Mailbox GUID 2>, ..., <Mailbox GUID n>) | ForEach-Object {Get-MailboxStatistics -StoreMailboxIdentity $_ -Database <Database GUID> | select DisplayName}
Automatically remove mailboxes:
(<Mailbox GUID 1>, <Mailbox GUID 2>, ..., <Mailbox GUID n>) | ForEach-Object {Remove-Mailbox -Database <Database GUID> -StoreMailboxIdentity $_}
EDIT, P.S.: I had the same exact errors and was able to eliminate them.