web-dev-qa-db-ja.com

Exchange ServerログでExchangeとの間のDPM 2010の同期

各DPM同期では、次のエラーがExchange Serverに記録されます。

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
Paul D'Ambra

そして、あなたがあなたが毎日していないという質問をする質問をするとすぐに...

Exchange PowerShell ...を開き、実行します。

Get-MailboxStatistics | where-object { $_.DisconnectDate -ne $null } | Select DisplayName,MailboxGuid
 _

そして私の2つのアカウントがあります。私はそれらを必要とせず、私は実行することができます:

$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は私に このブログ

0
Paul D'Ambra