我正在运行带有Exchange 2013 SP1 CU15的Hybrid Office 365。
这里的任何人都可以共享PowerShell命令以基于特定的OU或CSV输入将OnPremise共享邮箱迁移到Office 365吗?
谢谢。
答案 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
}