Add-MailboxPermission to a group
Hi all, I'm trying to figuring out if it is possible to give mailbox permissions to a group of users? Plz. tell me if this is possible otherwise I'm going to have a long weekend.... For the record..., I've some department email acounts and I created groups for the accounts to give maibox permisions (fullaccess), so that the can use the department e-mailaccount in Outlook besides their personal emailadres. Thanx, Louis
March 30th, 2007 12:52pm

Yes, it's possible, not problem at all. http://support.microsoft.com/kb/268754/en-us
Free Windows Admin Tool Kit Click here and download it now
April 1st, 2007 12:40am

sure you can, use "Add-MailboxPermission -Identity your_group -AccessRights FullAccess -User shared_mailbox"
April 1st, 2007 12:18pm

Yes that was it! Import-CSV AddMailBoxPerm.csv |foreach { add-mailboxpermission -identity $_.MAIL -user $_.GAMGRP -accessrights fullaccess } Thanx, Louis
Free Windows Admin Tool Kit Click here and download it now
April 6th, 2007 6:00pm

Should it be Add-MailboxPermission -Identity shared_mailbox -AccessRights FullAccess -Useryour_group?
October 15th, 2007 8:15pm

Read the example at the bottom of this page:http://technet.microsoft.com/en-us/library/bb124097.aspx
Free Windows Admin Tool Kit Click here and download it now
November 28th, 2007 10:34pm

I need to add-mailboxpermission via cmd-let on particluar mailbox e.g. -identity "mailbox1" to multiple users e.g. -user "user1" -user "user2" .....so on say 8 to 10 users -AccessRights FullAccessWhat could be the command syntax?is it possible to get the list from test file and then pipe it with the add-mailboxpermission cmd-let?Also if possible the multiple mailboxes permission for a single user.Regards,Shashi
October 29th, 2009 4:00pm

First I would create a group and all all the users to that group, call the group something like mailbox1-fullperms.Then all you need to do is add that group to the permissions of the mailbox.Get-Mailbox 'mailbox1' | Add-Permissions -user 'domain\mailbox1-fullperms' -Accessright FullaccessThis way if you need to add or remove other users all you need to do is update the group.ThanksWillWill Shepherd - MCSE/MCITP/MCTS (Windows 2008,Exchange 2007,OCS 2007)
Free Windows Admin Tool Kit Click here and download it now
October 29th, 2009 4:06pm

I mean to say the command can be used as get-content and then pipe it with add-permission
October 19th, 2010 7:42am

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

Other recent topics Other recent topics