Read Only access to Mailbox in Exchange 2007
How can I grant Read Only access to a mailbox in Exchange 2007? I know how to grant Full Access in Exchange 2007 but I need the ability to grant read only access.
I DO NOT want to do this in Outlook, way too many folders to have to grant read only access to.
Thanks,
Eric
March 19th, 2010 9:46pm
Hi,
Unfortunately Outlook is the only way to accomplish this.
Leif
Free Windows Admin Tool Kit Click here and download it now
March 19th, 2010 10:22pm
The following command allows you to apply permissions at the mailbox level:
Add-ADPermission (http://technet.microsoft.com/pt-br/library/bb124403(EXCHG.80).aspx)
This is an example to grant read permissions for user A to user B's mailbox, but i recommend testing before puting this into production (i think some of the other read options might be required aswell):
Add-ADPermission -Identity "UserB" -User "UserA" -AccessRights GenericRead
With this command, you can set many types of rights and extended rights on whatever objects you want, including connectors, etc.
Best Regards,
Sam
March 20th, 2010 1:49am
On Fri, 19 Mar 2010 18:46:31 +0000, ewichert15609 wrote:>>>How can I grant Read Only access to a mailbox in Exchange 2007? I know how to grant Full Access in Exchange 2007 but I need the ability to grant read only access. >>I DO NOT want to do this in Outlook, way too many folders to have to grant read only access to. It's been a long time since I've done this but I /think/ you can usePFDAVADMIN to do this. It's truely a folder-level permission you'reasking for.---Rich MatheisenMCSE+I, Exchange MVP---
Rich Matheisen
MCSE+I, Exchange MVP
Free Windows Admin Tool Kit Click here and download it now
March 20th, 2010 7:08am