Forum Discussion

MED-TRIX-IT's avatar
MED-TRIX-IT
Copper Contributor
May 12, 2022

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-IT's avatar
      MED-TRIX-IT
      Copper 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

Resources