Setting Reply as the default instead of Reply All in Outlook on the Web (Exchange 2016/2019 and Microsoft 365)

I’m using Outlook on the Web (as part of my company’s Exchange mailbox) and there I noticed that the Reply button is a combined button containing, Reply All, Reply and Forward.

As I need to use the Reply button more often than the Reply All button, and inadvertently using Reply All is kinda “dangerous” in my line of work, I’d like to change that.

How can I set the Reply action as the default instead of Reply All?

Reply / Reply All buttonIt’s indeed somewhat questionable to have Reply All as the default action in Outlook on the Web.

Luckily, there is a way that you can change it as an end-user and Exchange administrators can also change the default for all users at once.

End-user method: Options screen

Outlook Web Options buttonYour default reply settings in Outlook on the Web can be set in the Options screen.

  1. Click on the Gear icon in the top-right corner left from your user picture.
  2. From the menu that open choose:
    • Exchange Online (Microsoft 365)
      View all Outlook settings
    • Exchange 2016 and Exchange 2019
      Options
  3. In the left pane choose:
    • Exchange Online (Microsoft 365)
      Mail-> Compose and reply-> Reply or Reply all
    • Exchange 2016 and Exchange 2019
      Mail-> Automatic processing-> Reply settings
  4. Set your default response to: Reply.
  5. Press the Save button at the top.
  6. Click on “Options” in the top left corner to return to your mailbox.

Setting the default Reply action via the Options screen in Exchange 2016/2019.
Setting the default Reply action via the Options screen in Exchange 2016/2019.

Setting the default Reply action via the Settings screen in Exchange Online (Microsoft 365).
Setting the default Reply action via the Settings screen in Exchange Online (Microsoft 365).

Note: In Exchange Online, the Reading Pane always show Reply, Reply All, and Forward as separate commands. The above setting only applies to the Reply command in the Toolbar.

Administrator method: Exchange PowerShell

Exchange Management Shell - PowerShell buttonAs an Exchange administrator, you can set the default via PowerShell with the IsReplyAllTheDefaultResponse parameter of the Set-MailboxMessageConfiguration cmdlet.

To change it for a specific user;
Set-MailboxMessageConfiguration name@domain.com –IsReplyAllTheDefaultResponse $false

To change it for all users;
Get-Mailbox –Resultsize Unlimited | Set-MailboxMessageConfiguration –IsReplyAllTheDefaultResponse $false

Note that the last command doesn’t apply to any new mailboxes that you created after you ran the command. Also, running the command at regular intervals might frustrate users that actually want the default to be Reply All.

To change it only for new mailboxes created in the last 7 days use;
Get-Mailbox –Resultsize Unlimited | where {$_.WhenCreated -gt (get-date).adddays(-7)} | Set-MailboxMessageConfiguration –IsReplyAllTheDefaultResponse $false

MAPILab
Use "4PM76A8" to get a discount when ordering!