Forum Discussion
Georgeina Baker
Dec 03, 2021Iron Contributor
Change global Calendar view setting for all users - possible?
We want the default for our Calendars to be "all users' Calendars are set to show Can view titles and locations", so colleagues can see a useful level of detail, not just 'free/busy', when booking me...
surajbudhani
Microsoft
Dec 04, 2021If you want to enable "LimitedDetails: View availability data with subject and location" for all Internal users. You can run the following command that will change the Default sharing for all the User Mailbox calendars.
$Users = Get-Mailbox -RecipientTypeDetails UserMailbox
ForEach($User in $Users){
$Calendar = $user.alias+”:\Calendar”
Set-MailboxFolderPermission -Identity $Calendar -User Default -AccessRights LimitedDetails}
$Users = Get-Mailbox -RecipientTypeDetails UserMailbox
ForEach($User in $Users){
$Calendar = $user.alias+”:\Calendar”
Set-MailboxFolderPermission -Identity $Calendar -User Default -AccessRights LimitedDetails}
Georgeina Baker
Dec 04, 2021Iron Contributor
Thank you! I should’ve said, I’m not a technician. For clarity, your suggestion uses PowerShell, right? And that’s because there’s not a global setting for this available?
🙏
🙏
- surajbudhaniDec 07, 2021
Microsoft
That's Right.
This method uses PowerShell to set the default permissions