10、迁移用户邮箱

1、 使用EMC迁移邮箱
1)添加Exchange林

clip_image002

2) 输入目标域名和目标域Excchange服务器

clip_image004

3) 输入test域的管理员密码

clip_image006

4) 选择test.com域---收件人配置---邮箱
clip_image008

5) 选择新建远程移动请求,下一步
clip_image010

6) 输入test.com邮件服务器FQDN和用户名密码
clip_image012

7)输入域名和数据库名(补充:这里定义要勾选“此移动请求完成时,将其搁置”,否则,比较容易报错)
clip_image014
8)新建
clip_image016

9) 完成
clip_image018

10) 在目标Exchange服务器中,打开Exchange管理器,选择收件人配置,点击移动迁移,右键选择刚才的邮箱,选择完成移动请求。
clip_image020

11) 选择是
clip_image022

12) 在移动请求中,右键点击邮箱属性,可以查看移动邮箱进度

clip_image023

13)点击日志---查看,检查相关错误日志
clip_image025

补充说明:

A)如果出现,如下错误:
clip_image027

需要在源exchange客户端访问服务器上,执行Excahnge Management shell
Set-WebServicesVirtualDirectory -Identity "EWS (Default Web Site)" -MRSProxyEnabled $true
参考微软:http://technet.microsoft.com/zh-CN/library/ee732395(v=exchg.141).aspx
B)如果出现,如图错误

此错误解决方法: 使用自签名证书会有此问题,两个域的Exchange服务器均使用CA证书,同时将相应的CA根证书导入到对方Exchange前端服务器(客户端或者HUB)的计算机受信任的根证书颁发机构中。
http://blogs.technet.com/b/exchange/archive/2010/08/10/3410619.aspx
 
 

2、使用EMS迁移邮箱
1)运行以下两条命令(迁移邮箱)
$RemoteCredentials = Get-Credential
说明:Get-Credential命令为得到当前输入用户名和密码凭证。
输入远程域管理员用户名格式为administrator@abc.com
2)

New-MoveRequest -Identity 'user07@test.com' -RemoteLegacy -TargetDatabase db1 -RemoteGlobalCatalog '2k08r2-dc.test.com' -RemoteCredential $RemoteCredentials -TargetDeliveryDomain 'contoso.com'

说明:
-Identity源用户
-TargetDatabase为目标域中Exchange邮箱数据库
-RemoteGlobalCatalog为源域中全局编录服务器

-TargetDeliveryDomain 为目标域名,这里为contoso.com(注意这里有可能是mail.contoso.com)
参考链接:

http://technet.microsoft.com/zh-cn/library/ee633491.aspx
clip_image033