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...
Dongjie
Apr 06, 2017MVP
Hi Edward , Create a new distribution group, add all members to enter, open the Outlook calendar permissions to add a newly created distribution group, set the privilege level!
Edward Lee
Apr 06, 2017Iron Contributor
But how can i do this for all useres without each person having to set their own permissions indiviually.
In other words, i have a group called All Staff. Now, I want to set every member of that group to have reviewer permission on every other users calendar.
Thanks Dongjie!
- DongjieApr 06, 2017MVPHI Edward
Try to share each user into the group with the Powershell command
(cmdlet Set-MailboxFolderPermission )- Edward LeeApr 06, 2017Iron Contributor
Can you elaborate? Thanks Dongjie!
- DongjieApr 06, 2017MVPHi Edward
Use the powershell loop statement to add each user's shared calendar permissions
reference:
foreach ($Mailbox in (Get-Mailbox -ResultSize Unlimited)) { Add-MailboxFolderPermission -identity "$($Mailbox.Name):\Kalender" -AccessRights LimitedDetails -User Default }
http://blog.powershell.no/2010/09/20/managing-calendar-permissions-in-exchange-server-2010/
https://technet.microsoft.com/en-us/library/ff522363.aspx?f=255&MSPPError=-2147217396
Hope to help you! thanks!