5 pts.
 delegate search
is there a way to do a search on the exchange server for a reporting of all Mailboxes and their delegates?

Software/Hardware used:
ASKED: December 1, 2009  2:48 PM
UPDATED: December 3, 2009  7:04 PM

Answer Wiki:
It does not matter for this question, but for the future, please remember to put the version you are using so we can give you more helpful suggestions. There is nothing inside of Exchange to my knowledge that reports this, certainly not Exchange 2003 or earlier. Exchange 2007 may have powershell commands which will pull this info, but I have not seen any. I know Quest Software MessageStats gives this information, but of course that is a third party product and costs money. There may be other third party reporting software that will give this info for you as well.
Last Wiki Answer Submitted:  December 2, 2009  4:20 pm  by  Technochic   56,975 pts.
All Answer Wiki Contributors:  Technochic   56,975 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

I did a little Googling and found a couple of ideas.

One is at http://hellomate.typepad.com/exchange/2004/09/listing_which_e.html

And I also found this (can’t find the URL I got it at).

# script to check delegates for a particular mailbox
$UserToCheck = get-mailbox UserName
#check what users have access:
$result = $UserToCheck.GrantSendOnBehalfTo
#display results
$result

Haven’t tested either of them.

ken

 135 pts.