Full mailbox access to multiple user who are not in same group or OU
I need to give Full mailbox access to multiple users on a single mailbox.The shell command for example //Add-MailboxPermission -Identity "analytics" -User “RundleJo” -AccessRights FullAccess/// works for single user. But if i want to add 30 users what is the command.
March 11th, 2011 1:33am

Add 30 users to csv file with "Name" as heading of the column and run the following sequence. foreach ($line in import-csv "location of csv file"){Add-MailboxPermission -Identity "analytics" -User $line.Name -AccessRights FullAccess}
Free Windows Admin Tool Kit Click here and download it now
March 11th, 2011 4:52am

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

Other recent topics Other recent topics