Public/Get-MailboxForwarding.ps1
1 2 3 4 5 6 7 8 |
function Get-MailboxFowarding { <# .SYNOPSIS Gets all mailboxes and their forwarding information. #> Get-Mailbox | Select-Object -Property DisplayName, DeliverToMailboxAndForward, ForwardingAddress, ForwardingSMTPAddress } |