How to list delegation on the client Outlook 2003
Hi Guys, How to query Outlook delegation on exchange 2003? And also "sendas" attribute? by script or macro in excel? Any idea?
April 5th, 2011 3:34pm

You can dump delegates via csvde CSVDE -f delegate.csv -r objectClass=person -l "DN, displayname, samaccountname, publicdelegates,publicdelegatesBl"
Free Windows Admin Tool Kit Click here and download it now
April 5th, 2011 3:39pm

For send as use the script below from Glen Scales. I've used it in the past for auditing. Tracking Permission Changes to Mailbox rights and Send As – Receive As ACE’s in Exchange http://gsexdev.blogspot.com/2007/04/tracking-permission-changes-to-mailbox.htmlJames Chong MCITP | EA | EMA; MCSE | M+, S+ Security+, Project+, ITIL msexchangetips.blogspot.com
April 5th, 2011 8:06pm

Hi, For querying delegation on Exchange 2003, you can try the following scripts: $users = Get-QADUser -SizeLimit 0 -IncludedProperties publicdelegates,publicdelegatesbl -LdapFilter '(publicdelegates=*)(publicdelegatesbl=*)' $users | select * | foreach { $publicdelegates = $_.publicdelegates | get-qaduser | foreach {$_.name} $_.publicdelegates = [string]::join(';',$publicdelegates) $publicdelegatesbl = $_.publicdelegatesbl | get-qaduser | foreach {$_.name} $_.publicdelegatesbl = [string]::join(';',$publicdelegatesbl) $_ } | Select-Object Name,DN,publicdelegates,publicdelegatesbl And you can also refer to the article ‘Listing Which Exchange Users Have or Are Delegates’. For send-as scripts, you can follow James’s below. Hope it helps. ThanksPlease remember to click Mark as Answer on the post that helps you, and to click Unmark as Answer if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
Free Windows Admin Tool Kit Click here and download it now
April 7th, 2011 2:34am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics