Granting multiple users permissions to a mailbox
Hi, How can I grant multiple users rights to a mailbox, say user1, user2, and user3 need full access to garyk's mailbox. I don't want to do it by assigning rights to a group.ex: Add-MailboxPermission "garyk" -AccessRights FullAccess -user "user1" Thank you
June 9th, 2009 10:08pm

$users = "user1","user2","user3" |foreach-object {Add-MailboxPermission -Identity garyk -AccessRights fullaccess -user $_ -whatif} Karl
Free Windows Admin Tool Kit Click here and download it now
June 9th, 2009 11:25pm

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

Other recent topics Other recent topics