kwitcom
asked on
I have a Group called MailboxFullAccess, and I want this group to have FullAccess rights to All Mail boxes in Exchange 2007
Exchange 2007
Need help with command:
Run the following command to add the permission directly to the mailbox:
Add-MailboxPermission "Mailbox" -User "Trusted User" -AccessRights FullAccess
I have a Group called MailboxFullAccess, and I want this group to have FullAccess rights to All Mail boxes in Exchange 2007
Need help with command:
Run the following command to add the permission directly to the mailbox:
Add-MailboxPermission "Mailbox" -User "Trusted User" -AccessRights FullAccess
I have a Group called MailboxFullAccess, and I want this group to have FullAccess rights to All Mail boxes in Exchange 2007
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Add-ADPermission -Identity "Spamanufacturing" -User "MailboxFullAccess" -ExtendedRights Receive-As
Thnx