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!