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
- Sure, use the Set-MailboxMessageConfiguration cmdlet:
Set-MailboxMessageConfiguration mailboxname -MailSendUndoInterval 10
Or in bulk:
Get-Mailbox -RecipientTypeDetails UserMailbox -ResultSize Unlimited | Set-MailboxMessageConfiguration -MailSendUndoInterval 10
- Sure, 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-ITCopper ContributorThank 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.