dapaulio Posted March 29, 2018 Posted March 29, 2018 Afternoon all Planning migration and wondered is there a way of interrogating exchange thru PS or EMC that will list all mailboxes that have any additional delegated users or have have a forwarding address assigned Thanks
HPlum78 Posted March 29, 2018 Posted March 29, 2018 Get-mailbox | select DisplayName,ForwardingAddress | where {$_.ForwardingAddress -ne $Null} That should get you any MB with forwarding set and the address that the MB is set to forward to. Get-Mailbox | Get-MailboxPermission | where {$_.user.tostring() -ne "NT AUTHORITY\SELF" -and $_.IsInherited -eq $false} And this should get the delegate bit sorted. You can | to export-CSV or ogv..... 1
dapaulio Posted March 30, 2018 Author Posted March 30, 2018 Thanks @HPlum78 those are exactly the results I needed.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now