【问题标题】:PowerShell script to bulk migrate Shared Mailbox to Office 365 based on certain OU or .CSV file基于某些 OU 或 .CSV 文件将共享邮箱批量迁移到 Office 365 的 PowerShell 脚本
【发布时间】:2019-01-29 21:09:09
【问题描述】:

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

我正在寻找一个 PowerShell 命令来根据特定的 OU 或 .CSV 输入将 OnPremise 共享邮箱迁移到 Office 365。

【问题讨论】:

    标签: powershell office365 exchange-server


    【解决方案1】:

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

    $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
    
    } 
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2016-10-29
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多