Looks like you may have retention hold placed on those users.
Run this to get a list of users that have the RetentionHoldEnabled set to $true
Get-Mailbox -ResultSize Unlimited | where {$_.RetentionHoldEnabled} |Export-CSV "C:\RetentionHoldv1.0.csv" -NoTypeInformation -Encoding UTF8
Then a quick script to loop through and disable retention hold on all and start the MFA again:
$Mbx = Get-Mailbox -RecipientTypeDetails UserMailbox -ResultSize Unlimited | where {$_.RetentionHoldEnabled}
ForEach ($M in $Mbx) {
Write-Host "Processing" $M.DisplayName
Set-Mailbox -Identity $M.Alias -RetentionHoldEnabled $false
Start-ManagedFolderAssistant -Identity $M.Alias
}
If you need retention hold on other users, then you can run these two commands on the user with the issues:
Set-Mailbox -Identity <userID> -RetentionHoldEnabled $false
Start-ManagedFolderAssistant -Identity <userID>
Scott<-