Frequently Asked Question
Exchange - Check to see if a user has forwarding enabled on their account
Last Updated 5 months ago
Use this command to see if a user has their address set to auto-forward. Possibly causing issues for Oof out of office responses.
Get-mailbox -identity | FL *forwarding*,*deliver*
To disable it use this comand
Set-Mailbox -Identity -DeliverToMailboxAndForward $false -ForwardingSMTPAddress $null
Tag: Exchange, OOf