Forum Discussion
MED-TRIX-IT
May 12, 2022Copper Contributor
Setting Undo policies for our org users in OWA
Hi, Our Organization would like to implement the "10 seconds Undo button" for all of our OWA users. Is there a way through Exchange admin center or PS to implement such policy? thank you
- May 12, 2022Sure, use the Set-MailboxMessageConfiguration cmdlet:
Set-MailboxMessageConfiguration mailboxname -MailSendUndoInterval 10
Or in bulk:
Get-Mailbox -RecipientTypeDetails UserMailbox -ResultSize Unlimited | Set-MailboxMessageConfiguration -MailSendUndoInterval 10
MED-TRIX-IT
May 19, 2022Copper Contributor
Thank you very much for the answer, we implemented the change and everything seems to work fine, I want to add to this question one thing;
Is there a way in which we could set the setting as the default setting for future mailboxes? Thank you very much for the help
Is there a way in which we could set the setting as the default setting for future mailboxes? Thank you very much for the help
VasilMichev
May 19, 2022MVP
Nope, you have to run it against each newly created user.