Link to home
Start Free TrialLog in
Avatar of techdrive
techdriveFlag for United States of America

asked on

powershell exchange 2007 System.DirectoryServices.ActiveDirectoryRights[]

I am trying to get the mailboxes and make sure they have send as access to each of their own mailboxes. When doing so running this command "get-mailbox -server "someserver" | Get-ADPermission | where {($_.ExtendedRights -like "*Send-As*") -and ($_.IsInherited -eq $false) -and -not ($_.User -like "NT AUTHORITY\SELF")} | export-csv c:\temp\somsserver.csv -nti" I get valid datra with the exception of these two columns below. Can anyone tell me what am I doing and how can I get the userrights and extended rights rather than what I am receiving below, thanks

AccessRights                                                        ExtendedRights
System.DirectoryServices.ActiveDirectoryRights[]      Microsoft.Exchange.Configuration.Tasks.ExtendedRightIdParameter[]
System.DirectoryServices.ActiveDirectoryRights[]      Microsoft.Exchange.Configuration.Tasks.ExtendedRightIdParameter[]
System.DirectoryServices.ActiveDirectoryRights[]      Microsoft.Exchange.Configuration.Tasks.ExtendedRightIdParameter[]
ASKER CERTIFIED SOLUTION
Avatar of SubSun
SubSun
Flag of India 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 techdrive

ASKER

Excellent thanks