我必须域名,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 [email protected] -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 [email protected] -RemoteForestDomainCont ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Write-Error], WriteErrorException
+ FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Prepare-MoveRequest.ps1
0 mailbox(s) ready to move.
因此,在调试并仔细查看脚本之后,我对其进行了一些修改,以便我可以看到在复制/准备过程中出现问题的位置。
问题是“UserPrincipalName”(UPN)的副本。如果我跳过脚本中的 UPN 副本,它将起作用,即我可以毫无问题地执行它。我以为我以后可以手动更改用户属性中的UPN,即我将域A.de中用户test09的属性更改为UPN [email protected]。但是:如果我之后更改 UPN 并按 OK,则会出现一条错误消息,指出 UPN 在林中必须是唯一的。我认为这也是必需的,因为我将有 2 倍相同的 UPN [email protected] - 域 A.de 中的 1x 和域 B.de 中的 1x。我想知道脚本为什么/如何实际工作以及 UPN 打算发生什么。
您是否使用命令“ $LocalCredentials = Get-Credential ”和“ $RemoteCredentials = Get-Credential ”输入了正确的 LocalCredentials( [email protected] ) 和 RemoteCredentials( [email protected] ) ?
此外,我尝试了以下命令来跨林移动并且它有效:
你可以试试我的命令来移动你的邮箱: