Exchange 2010 SP1 Prepare-MoveRequest.Ps1跨林迁移

我们正在迁移到Server 20008R2 / Exchange 2010 SP1(从Server 2003,Exchange 2003),并且作为该过程的一部分,创build了具有不同FQDN的新林。

现在我们在使用ADMT工具完成迁移之后,尝试从Exchange 2003迁移到2010,并且该过程的一部分使用Prepare-MoveRequest.Ps1将源域中的属性合并到目标域帐户( -UseLocalObject -OverWriteLocalObject开关)。

问题是Prepare-MoveRequest.Ps1脚本将源帐户复制为新帐户,而不是合并它们,因为源和目标帐户具有不同的FQDN。

还有一条消息:警告:在当前林中找不到XXX(源域FQDN)的相应对象。 “成员”未更新。

任何想法如何解决这个问题,并将源属性合并到新的?

谢谢!

当用户存在于目标域中时,有两个交换机可以合并。 在我的情况下,源和目标帐户名称是不同的,所以我需要一个ADMT的包含文件,但是为了这个准备,我指定了使用源和目标中识别的smtp地址的标识,并基于此完成了合并。

它们是-UseLocalObject后跟-OverwriteLocalObject

 .\Prepare-MoveRequest.ps1 -RemoteForestDomainController dc401.dc.contoso.com -RemoteForestCredential $RemoteCredentials -LocalForestDomainController phiads001.dt.inc -LocalForestCredential $LocalCredentials -UseLocalObject -OverwriteLocalObject -Verbose -Identity [email protected] VERBOSE: Local ad account with dupplicate proxy addresses found: CN=Woody Brown,OU=Users,OU=Philadelphia,DC=dt,DC=inc VERBOSE: Merging Mailbox properties to local MailUser VERBOSE: Setting msExchMailboxGUID to 136aef07-5869-415e-ae0e-bbe69963593b VERBOSE: Setting proxyAddresses to x500:/o=DealerTrack/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Woody Brown8d2 x500:/o=DealerTrack/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Woody Brown753677056d53 X400:c=US;a= ;p=contoso;o=Exchange;s=Brown;g=Woody; SMTP:[email protected] Appending x500:/o=contoso/ou=First Administrative Group/cn=Recipients/cn=wbrown to proxyAddresses of Object(CN=Woody Brow n,OU=Users,OU=Philadelphia,DC=dt,DC=inc) in Local forest. VERBOSE: OverwriteLocalObject specified. Updating MailUser with with attributes from source MBX(CN=Woody Brown,CN=Users,DC=dc,DC=contoso,DC=com). VERBOSE: Setting displayName to Woody Brown VERBOSE: Setting Mail to [email protected] VERBOSE: Setting mailNickName to wbrown VERBOSE: Setting msExchMailboxGuid to 136aef07-5869-415e-ae0e-bbe69963593b VERBOSE: Setting countryCode to 0 VERBOSE: Setting givenName to Woody VERBOSE: Setting Sn to Brown VERBOSE: Setting textEncodedORAddress to c=US;a= ;p=contoso;o=Exchange;s=Brown;g=Woody; Preparation for [email protected] done. Local recipient info Merged. 1 mailbox(s) ready to move. [PS] C:\scripts> 

由于时间紧迫,我们必须清除帐户,首先用Prepare-MoveRequest.Ps1重新导入帐户,然后通过ADMT重新迁移帐户以导入SID历史logging。

这最终奏效了,但是如果有人能就此为未来提供build议,我将不胜感激。