diff --git a/Servers/Microsoft Exchange/Scripts/Set Mailbox AutoReply.md b/Servers/Microsoft Exchange/Scripts/Set Mailbox AutoReply.md index 1c06154..7e70457 100644 --- a/Servers/Microsoft Exchange/Scripts/Set Mailbox AutoReply.md +++ b/Servers/Microsoft Exchange/Scripts/Set Mailbox AutoReply.md @@ -1,3 +1,7 @@ +**Purpose**: Sometimes you need to set an autoreply on a mailbox on behalf of someone else. In these cases, you can leverage the "Exchange Admin Shell" to configure an auto-reply to anyone who sends an email to the mailbox. + +In the example below, replace `` with the shortened username of the target user. (e.g. `nicole.rappe` not `nicole.rappe@bunny-lab.io`) + ``` powershell -Set-MailboxAutoReplyConfiguration -Identity -AutoReplyState Scheduled -StartTime "1/1/2024 00:00:00" -EndTime "1/1/2024 00:00:00" -InternalMessage "Example,

Message here.

Thank you." -ExternalMessage "Example,

Message here.

Thank you." +Set-MailboxAutoReplyConfiguration -Identity -AutoReplyState Scheduled -StartTime "1/1/2025 00:00:00" -EndTime "1/15/2025 00:00:00" -InternalMessage "Example,

Message here.

Thank you." -ExternalMessage "Example,

Message here.

Thank you." ``` \ No newline at end of file