Open the Exchange Management Console
Expand Microsoft Exchange On-Premise and Recipient Configuration. Select Mailbox
Right click on the mailbox you wish to forward and click Properties
Select the Mail Flow Settings tab. Select Delivery Options and click Properties…
Select Forward To: and click Browse
Select the user you wish to forward emails to, and click OK
If you wish to send the email to the original mailbox and forward it, select Deliver message to both forwarding address and mailbox.
Click OK.
Click OK on the users Mailbox Properties
Close the Exchange Management Console
To do this in Powershell, Open the Exchange Management Shell and use the following commands:
Set-Mailbox –Identity “%IDENTITY%” –ForwardingAddress %ADDRESS%
eg:
Set-Mailbox –Identity “ANONIT” –FowardingAddress anonit@example.com
To deliver both to the mailbox and the forward address, use the –DeliverToMailboxAndForward $TRUE
eg: to deliver to ANONIT and anonit@example.com
Set-Mailbox –Identity “ANONIT” –FowardingAddress anonit@example.com –DeliverToMailboxAndForward $TRUE
No comments:
Post a Comment