在每个DPM同步上在交换服务器上logging以下错误
Unable to update Mailbox SD in the DS. Mailbox Guid: 2ad8687a-a049-4db2-b8c2-86b493495c20. Error Code 0x8004010f Unable to update Mailbox SD in the DS. Mailbox Guid: 03be3109-83b4-45da-8695-8f32371cb0bd. Error Code 0x8004010f
错误:0x8004010f翻译为NOT_FOUND
完整的事件是:
Event Type: Warning Event Source: MSExchangeIS Event Category: General Event ID: 9554 Date: 02/11/2010 Time: 15:40:07 User: N/A Computer: BMCEX01 Description: Unable to update Mailbox SD in the DS. Mailbox Guid: 2ad8687a-a049-4db2-b8c2-86b493495c20. Error Code 0x8004010f
我使用了adfind工具来尝试识别它们:
adfind -gc -b "" -binenc -f " msExchMailboxGUID={{GUID:2ad8687a-a049-4db2-b8c2-86b493495c20}}" -dn
但是,这没有logging。
那么如何确定是什么导致了错误信息呢?
而且一旦你提出这个问题,你就可以跨越几天
打开交streamPowerShell …并运行:
Get-MailboxStatistics | where-object { $_.DisconnectDate -ne $null } | Select DisplayName,MailboxGuid
有我的两个帐户。 我不需要他们,所以我可以运行:
$users = Get-MailboxStatistics | where-object { $_.DisconnectDate -ne $null } | Select DisplayName,MailboxGuid $users | ForEach { Remove-Mailbox -Database "Mailbox Database" -StoreMailboxIdentity $_.MailboxGuid -confirm:$false }
幸运的是,我不必考虑构build这些PowerShell命令。 一旦我有了灵感,我的google-fu把我带到了这个博客 。