SOLVED

Setting Undo policies for our org users in OWA

Copper Contributor

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

3 Replies
best response confirmed by MED-TRIX-IT (Copper Contributor)
Solution
Sure, use the Set-MailboxMessageConfiguration cmdlet:

Set-MailboxMessageConfiguration mailboxname -MailSendUndoInterval 10

Or in bulk:

Get-Mailbox -RecipientTypeDetails UserMailbox -ResultSize Unlimited | Set-MailboxMessageConfiguration -MailSendUndoInterval 10
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
Nope, you have to run it against each newly created user.
1 best response

Accepted Solutions
best response confirmed by MED-TRIX-IT (Copper Contributor)
Solution
Sure, use the Set-MailboxMessageConfiguration cmdlet:

Set-MailboxMessageConfiguration mailboxname -MailSendUndoInterval 10

Or in bulk:

Get-Mailbox -RecipientTypeDetails UserMailbox -ResultSize Unlimited | Set-MailboxMessageConfiguration -MailSendUndoInterval 10

View solution in original post