Link to home
Start Free TrialLog in
Avatar of certuran
certuranFlag for Türkiye

asked on

How do I get a report or list for mailbox permissions in MS Exchange 2007

On the MS Exchange 2007 server Management Console, when right click on a mailbox in the Receipent Mailbox list, there are two permissions: Manage Send as Permission, Manage Full Access Permission. And in the properties of a mailbox - Mail Flow settings - Delivery Options Properties, there is a property that Send on bahalf - Grant this permission to.
how can I get a list or report of mailboxes that are set these permissions.
Avatar of Nitin Gupta
Nitin Gupta
Flag of United Kingdom of Great Britain and Northern Ireland image

Hi,
Simplest solution is use free trial of Quest MessageStats or Reporter for the information
Else you will need to run piped Powershell Scripts
Thanks
Nitin
ASKER CERTIFIED SOLUTION
Avatar of Mahmoud Sabry
Mahmoud Sabry
Flag of Egypt image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of certuran

ASKER

Thank you, actually I need this for all users, not only XXX user.
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
dear qupnit, Quest is a good suggestion and the command ( Get-Mailbox | Get-ADPermission | where {($_.ExtendedRights -like “*Send-As*”)} | FT -Wrap ) worked.

dear the commands (Get-Mailbox | Get-MailboxPermission -User XXX@domain.com | fl identity,user, accessrights) and ( Get-Mailbox | Get-MailboxPermission -User $_.allusers | fl identity,user, accessrights ) worked. But this ($allusers=get-user | Where-Object {$_.recipienttype -eq "UserMailbox"}) has given error.

I post the result by putting the >xxxxx.txt at the and of command. Is there another way to transfer the results to the excel file.

Only problem is the results are text. To convert them a table structure requiring processing text files. But the results are matching what I wanted.