Forum Discussion
jbandy
Jun 10, 2022Copper Contributor
Disable all calendar notifications
I've got a real weird one here. Customer wants to disable all calendar notifications / alerts for the whole company. They dont want to receive any kind of calendar notification on outlook desktop...
jbandy
Jun 11, 2022Copper Contributor
Think I might have found a way to do this after all based on this article:
https://darawtechie.com/2017/07/16/no-reminders/
Ran the command through a powershell script that targets all mailboxes:
ForEach ($Mailbox in (Get-Mailbox -RecipientTypeDetails UserMailbox))
{ Set-MailboxCalendarConfiguration -Identity $Mailbox -RemindersEnabled:$false -DefaultReminderTime 00:00:00 }
VasilMichev
Jun 11, 2022MVP
That only affects OWA though, no other clients.