Forum Discussion
Edward Lee
Apr 06, 2017Iron Contributor
How can I make all users calendar shared with all other users?
How can I make the calendar for all users in a particular group shared with all other users in that group? And, any time I add a new user to the all staff group, their calendar is automatically share...
Edward Lee
Iron Contributor
Can you elaborate? Thanks Dongjie!
Apr 06, 2017
Hi Edward,
You can do this:
- Connect to Office 365 Exchange Online
- Create a security group called for example "YourSecrurityGroup"
- Add users to that group
- Execute the folowing script
- $GroupMembers = Get-DistributionGroupMember YourSecurityGroup
- foreach ($GroupMember in $GroupMembers) { Add-MailboxFolderPermission -Identity (""+ $GroupMember.Guid+ ":\Calendar") -User YourSecurityGroup -AccessRights Editor}