I have 100 databases in Exchange that I want to perform a task on. I might want to change the currently mounted server or something else.
When I run this command, each database is serially synced. I would like to run them all in parallel. How can I accomplish this?
Get-MailboxDatabaseCopyStatus -Server nyc01| where Status -eq Failed | Suspend-MailboxDatabaseCopy
Get-MailboxDatabaseCopyStatus -Server nyc01 | where Status -eq FailedAndSuspended | Update-MailboxDatabaseCopy- SourceServer nyc02 -DeleteExistingFiles:$true -Confirm:$false