Offce 365: Assigning calendar permissions via security groups/bulk calendar sharing


i posted in 365 forums informed post here instead...

i'm looking way bulk calendar sharing of individual calendars (not public folders) in exchange online.

have client looking share every employee's calendar every single employee in organization.

have 16 employees if did usual powershell command below i'd have enter 250+ times.

add-mailboxfolderpermission –identity user1@domain.com:\calendar -accessright editor -user user2@domain.com

created security group , added of employees it.  now if can run powershell command assign calendar permissions security group , can drastically cut down admin work.  in theory can run powershell command 1 time each staff member (so 16 times) , have of necessary permissions assigned.

if method isn't possible what's best practice getting done?

hi talllefty,

to make the members in security group able to share calendar same group memebers, please try script below:

$groupmembers = get-distributiongroupmember securitygroup1 foreach ($groupmember in $groupmembers) { add-mailboxfolderpermission -identity (""+ $groupmember.guid+ ":\calendar") -user securitygroup1 -accessrights editor}
hope helps.



Windows Server  >  Windows PowerShell



Comments

Popular posts from this blog

2008 Windows Deployment Server Properties Error

Can no longer user MS Update - Files required to use Microsoft Update are no longer registered

How do a find data in one file, search for it in another file and if not found, write a custom message to another file