auto reply

Glenn Maxwell 10,146 Reputation points
2020-08-11T19:49:20.897+00:00

Hi Experts

i want to set autoreply for office365 unified group, will the below syntax work for me

Set-MailboxAutoReplyConfiguration -Identity unifiedgroup1@Company portal .com -InternalMessage "Hello,This group is not monitored," -ExternalMessage "Hello This group is not monitored"

Microsoft Exchange Online Management
Microsoft Exchange Online Management
Microsoft Exchange Online: A Microsoft email and calendaring hosted service.Management: The act or process of organizing, handling, directing or controlling something.
4,233 questions
Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,381 questions
{count} votes

Accepted answer
  1. Lydia Zhou - MSFT 2,371 Reputation points Microsoft Employee
    2020-08-12T05:35:45.697+00:00

    As JonAlfredSmith-5004 mentioned, you have to add AutoReplyState parameter and enable it to make sure the OOF is working. I test the command, and OOF works well for internal and external senders. Here are my test results.

    The command I used:
    17136-526.png

    When an internal user user01 sends message to that group, user01 can get OOF message:
    17057-527.png

    When I send to the group with my Gmail account, I can get the OOF message as well:
    17064-528.png

    1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. Jon Alfred Smith 541 Reputation points
    2020-08-11T20:34:45.287+00:00

    You need to add the AutoReplyState parameter to specify whether the mailbox is enabled for Automatic Replies.

    Set-MailboxAutoReplyConfiguration -Identity unifiedgroup1@Company portal .com -AutoReplyState Enabled -InternalMessage "Hello,This group is not monitored," -ExternalMessage "Hello This group is not monitored"

    There's perhaps a typo after "not monitored", a comma.

    0 comments No comments