Link to home
Start Free TrialLog in
Avatar of Joe_Budden
Joe_Budden

asked on

List of users with SEND AS permission to a mailbox

Any way I can get an output of this in Exchange 2007?
Avatar of KSK2000
KSK2000
Flag of India image

You can use get-adpermission command to see who all has send as permission on a mailbox. Pls refer technet - http://technet.microsoft.com/en-us/library/bb125183(EXCHG.80).aspx for more details on command.
Avatar of Joe_Budden
Joe_Budden

ASKER

Sure, but how would I get an export of just SEND AS for Marketing? The link doesn't show how?
Get-ADPermission ......  | Export-CSV test.csv
ASKER CERTIFIED SOLUTION
Avatar of ronnypot
ronnypot
Flag of Netherlands 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

Try the below

get-mailbox -identity exchangealias -resultsize unlimited | get-mailboxpermission | where { ($_.accessrights -eq "SendAs") -and ($_.isinherited -eq $false) -and -not ($_.user -like "NT Authority\self")} | ft identity,user -autosize | out-file c:\log\users.txt