檢視次數:

狀況描述:

 Exchange Hybrid 環境,地端會議室要怎麼移轉到雲端

原因:

Resource mailbox 帳號預設是停用的,無法使用 GUI 做移轉。

解決方法:

  1. 在安裝過Exchange Online PowerShell Module 的地端 Exchange Hybrid server,開啟 PowerShell。
  2. Import-Module ExchangeOnlineManagement
  3. Connect-ExchangeOnline -UserPrincipalName "GlobalAdmin@yourdomain.onmicrosoft.com" -ShowProgress $true
  4. $OnPremAdmin=Get-Credential
  5. New-MoveRequest –identity “UPN of mailbox to be migrated” -Remote -RemoteHostName “FQDN of your hybrid server(s) e.g. hybrid.yourdomain.com” -RemoteCredential $OnPremAdmin -TargetDeliveryDomain “yourdomain.mail.onmicrosoft.com
  6. 取得移轉進度:Get-MoveRequest | Get-MoveRequestStatistics
  7. 移除移轉要求:Get-MoveRequest | Remove-MoveRequest 

參考資料: