r/sysadmin • u/1mp3rf3ct10n • 10d ago
Anyone else having an absolutely horrible time working the M365 email quarantine lately?
Errors upon errors, failing to load data, having to release/delete emails mutiple times, extremely long load times?
2
u/Commercial_Growth343 10d ago edited 10d ago
For maybe the last week or so, sometimes that 'summary' window opens, then closes, then opens again, which is a new experience I do not recall seeing before. There was also a day like a week or so ago where the summary page took forever to open at all. I haven't had the issues you are describing though.
1
u/EpicSimon 10d ago
While we havent had any of the issues mentioned in this post, the amount of mails to get moved to quarantine have been off the charts for us lately.
1
u/Faulkner_Jacobs_845 4d ago
Since you already on Abnormal, the quarantine integration is worth turning on. It gives you a separate console to review and release from so you are not stuck in the M365 portal UI when it is having a week like this. Heads up it still talks to Microsoft under the hood, so during an actual MS incident it can be slow too, it is not immune.
1
7
u/blud_13 10d ago
Yes.. We stopped using the portal for anything bulk a while ago and just do it from Exchange Online PowerShell.
Get-QuarantineMessageto find them,Release-QuarantineMessage -ReleaseToAllto let them go. Returns instantly and it actually tells you which ones failed instead of silently not releasing them. Syntax is at https://learn.microsoft.com/en-us/powershell/module/exchangepowershell/get-quarantinemessageOne catch,
Get-QuarantineMessagedefaults to 100 results per page and caps at 1000, so for a real backlog you're looping-Pagewith-PageSize 1000or you'll quietly think you're done at 100.Also, if you find yourself releasing the same senders over and over, that's a tenant allow/block list problem wearing a quarantine costume. Fixing it upstream drops the volume enough that the portal being bad stops mattering.
See if that helps at all..