Forum Discussion
LED04
Oct 13, 2021Copper Contributor
"NeedsApproval"
Hi All, So I have been migrating mailboxes from onprem to O365 in the hybrid config with no issues. Today I have two migration batch jobs that state "NeedsApproval", but everything migrated. Kind ...
Michal_Radix
Nov 13, 2022Copper Contributor
Hi maybe this reply is quite late but for future cases:
- Open powershell
- Use the Connect-ExchangeOnline command (google how to download and use)
- Use CMD:
Spoiler
Set-MigrationUser -Identity "email address removed for privacy reasons" -ApproveSkippedItems​
Or CMD:
Set-MoveRequest -Identity email address removed for privacy reasons -SkippedItemApprovalTime $(Get-Date).ToUniversalTime()
This worked for me 🙂
- aa1Feb 15, 2023Copper Contributor
Get-MigrationBatch -Status needsapproval | Set-MigrationBatch -ApproveSkippedItems
- Syed_Ali_MahdiMar 31, 2024Copper Contributor
I had the same story and this helpded me as well, Super Michal