Jump to content

Recommended Posts

Posted

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

Posted

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.....

  • Thanks 1

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 account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...