Active-Directory

將郵件儲存從 Exchange 2010 遷移到 Exchange 2013

  • April 2, 2020

我必須域名,A.de 和 B.de。多年來,他們彼此信任。A 和 B 都使用 Exchange 2010。現在,A.de 開始使用 Exchange2013。現在這兩個域應該合併,即 A.de 還應該包含來自 B.de 的所有使用者及其郵箱。

因此,我遵循了 Microsoft 網站上的一些說明(https://docs.microsoft.com/de-de/exchange/architecture/mailbox-servers/prep-mailboxes-for-cross-forest-moves-in-powershell? view=exchserver-2019#parameter-set-of-the-script) - 右上角有一個小複選標記(“auf englisch lesen” - 用英文閱讀)。

因此,我檢查了測試使用者的所有必需屬性。此外,我創建了一個檔案來滿足所有必需/強制屬性。(預設情況下唯一沒有設置的屬性是’proxyadsress’ - 我也設置了這個屬性)。

但是,我仍然收到一條錯誤消息,提示“使用 0 個參數呼叫“setinfo”的異常 - 出現了違反限制的情況”。該命令從 Domain A.de 中的 exchange server2013 執行。

有人知道如何檢查,檢查發生了什麼嗎?

   [PS] C:\Program Files\Microsoft\Exchange Server\V15\Scripts>.\Prepare-MoveRequest.ps1 -Identity test09@B.de -RemoteForestDomainController dc2.B.de -RemoteForestCredential $remote -LocalForestDomainController dc3.A.de -LocalForestCredential $local
Appending x500:/o=A/ou=Exchange Administrative Group (xxxxxxxxx)/cn=Recipients/cn=testvorname9 testnachname9cb6 to proxyAddresses of New Object in Local forest.
C:\Program Files\Microsoft\Exchange Server\V15\Scripts\Prepare-MoveRequest.ps1 : Error while creating MEU. Error:Error creating mailuser CN=testvorname9 testnachname9,CN=Users,DC=A,DC=de in local forest or setting its mandatory attributes. Error: Ausnahme beim Aufrufen von "SetInfo" mit 0 Argument(en):  "Es ist eine Beschränkungsverletzung aufgetreten.
"
In Zeile:1 Zeichen:1
+ .\Prepare-MoveRequest.ps1 -Identity test09@B.de -RemoteForestDomainCont ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   + CategoryInfo          : NotSpecified: (:) [Write-Error], WriteErrorException
   + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Prepare-MoveRequest.ps1

0 mailbox(s) ready to move.

您是否使用命令“ $LocalCredentials = Get-Credential ”和“ $RemoteCredentials = Get-Credential ”輸入了正確的 LocalCredentials( AdminAccount@LocalA.com ) 和 RemoteCredentials( AdminAccount@RemoteB.com ) ?

在此處輸入圖像描述

此外,我嘗試了以下命令來跨林移動並且它有效: 在此處輸入圖像描述

你可以試試我的命令來移動你的郵箱:

.\Prepare-MoveRequest.ps1 -Identity Test09@B.de -RemoteForestDomainController dc2.B.de -RemoteForestCredential $RemoteCredentials -LocalForestDomainController dc3.A.de -LocalForestCredential $LocalCredentials

引用自:https://serverfault.com/questions/1010399