DPM 2010 与 Exchange 同步导致 Exchange 服务器日志中出现奇怪的错误

DPM 2010 与 Exchange 同步导致 Exchange 服务器日志中出现奇怪的错误

每次 DPM 同步时,Exchange 服务器上都会记录以下错误

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

但它没有返回任何记录。

那么我该如何确定导致错误消息的原因呢?

答案1

而一旦你提出这个问题,你就做出了多天以来从未有过的飞跃......

打开 exchange powershell...并运行:

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 }

幸运的是,我不需要思考如何构造这些 powershell 命令。一旦我有了灵感,我的 google-fu 就会让我这个博客

相关内容