Sharing Resource Room Calendar Access
CoryS
Member Posts: 208
Ok, so I want to give everyone "fullaccess" to the resource rooms so I am trying to find the right way to pipe the get-mailbox cmdlet so that I can run this properly..
if I do the..
get-mailbox | add-mailboxpermission <room> -accessrights fullaccess -user <username>
I delegate one user to get access to everyone elses mailbox.
... I have tried the
[PS] c:\ $users = get-mailbox
[PS] c:\ add-mailboxpermission <room> -accessrights fullaccess -user $users
and that works like fooey..
My googling hasnt been up to par lately and I cant find what I would use to make this happen the way I want.. Any ideas? Thanks!
if I do the..
get-mailbox | add-mailboxpermission <room> -accessrights fullaccess -user <username>
I delegate one user to get access to everyone elses mailbox.
... I have tried the
[PS] c:\ $users = get-mailbox
[PS] c:\ add-mailboxpermission <room> -accessrights fullaccess -user $users
and that works like fooey..
My googling hasnt been up to par lately and I cant find what I would use to make this happen the way I want.. Any ideas? Thanks!
MCSE tests left: 294, 297 |
Comments
-
benbuiltpc Member Posts: 80 ■■□□□□□□□□Try -accessright without the "s".
EDIT:
Forget about that, try this link instead
http://technet.microsoft.com/en-us/library/bb124097.aspx -
CoryS Member Posts: 208Hello, thanks for the reply. That seems like a full description of the cmdlet, I have gone through most of the "get-help add-mailboxpermission -detailed" for examples and explanation, it doesnt seem to explicitly say how to apply this fullaccess permission to multiple mailboxes so that they may access a resource (its calendar to be specific).MCSE tests left: 294, 297 |
-
HeroPsycho Inactive Imported Users Posts: 1,940Check the script out at the end of this post. Should help you...
http://msexchangeteam.com/archive/2007/12/13/447731.aspxGood luck to all! -
CoryS Member Posts: 208Sometimes I swear my brain works against me, I could just do this in EMC since its SP1, I knew this too.. Thats the worst part, my brain just made me need to find a way to do it in the Shell... Arrgghh.. Thanks for the reply though, that would have worked, just a bit more complicated then I needed it to be!MCSE tests left: 294, 297 |
-
HeroPsycho Inactive Imported Users Posts: 1,940LOL, I would have told you that, but I thought you had to do this a lot and were looking for a way to do it via the shell.Good luck to all!