Finding All Resources, Groups, and Mailboxes for a User
How can I find all of the resources, groups, and mailboxes that a particular user might be managing, moderating, or accessing?
May 14th, 2011 1:01am

Sounds like a fun PowerShell script to write. Unfortunately I don't have the time to write something that complicated for you today.Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."
Free Windows Admin Tool Kit Click here and download it now
May 14th, 2011 6:56am

Hello, I think the mailbox access auditing feature might be helpful. http://www.msexchange.org/articles_tutorials/exchange-server-2007/compliance-policies-archiving/exchange-2007-mailbox-access-auditing-part1.html Thanks, Simon
May 17th, 2011 6:23am

I found a quick and dirty way to do this: Get-MailboxPermission -identity * -resultsize Unlimited | ft -auto > c:\temp\results.txt Then do a text search inside results.txt. It's ugly, but gets the job done. You have to increase the character width of your powershell window or the user names are likely to be truncated. If there's a way to do that otherwise without word wrapping, that would be better. This doesn't do anything for distro lists, though that shouldn't be too difficult to figure out.
Free Windows Admin Tool Kit Click here and download it now
June 3rd, 2011 11:56pm

I'm glad that works for you. However, that gives you mailbox rights for mailboxes only. It doesn't cover the full range of access you asked for, and it doesn't give you folder rights, which would also allow access.Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."
June 4th, 2011 2:27am

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

Other recent topics Other recent topics