PowerShell脚本可基于某些OU或.CSV文件将共享邮箱批量迁移到Office 365?

时间:2018-08-23 13:10:48

标签: powershell office365 exchange-server

我正在运行带有Exchange 2013 SP1 CU15的Hybrid Office 365。

这里的任何人都可以共享PowerShell命令以基于特定的OU或CSV输入将OnPremise共享邮箱迁移到Office 365吗?

谢谢。

1 个答案:

答案 0 :(得分:0)

嗨,您可以将此文件编辑到您的公司

$boxs = Get-Content your csv file
foreach ($box in $boxs){
    New-MoveRequest -Identity $box -Remote -RemoteHostName mail.domain.com -TargetDeliveryDomain domain.mail.onmicrosoft.com -RemoteCredential $cred

}