|
|
Question : Need a script to export all "send on behalf of" permissions within my organisation
|
|
How do I generate a report of all the users who have "send as" permission within my Exchange 2003 envrionment? I'm not sure if this information is stored in LDAP or as a hidden message accesible through the Outlook Object Model or CDO/MAPI.
|
Answer : Need a script to export all "send on behalf of" permissions within my organisation
|
|
csvde -r "(&(objectCategory=user)(publicDelegates=*))" -p subtree -f c:\sendas.csv
Should do it. Just look for the publicDelegates field and those will be the people with send as. The publicDelegatesBL will be the mailboxes they have access to.
At least this looks to be the case at my end.
|
|
|
|