Share via

Change default calendar permission for all users

Anonymous
2017-05-24T16:30:40+00:00

Our default calendar permission for all users is free/busy. Is there any way to change this setting to subject, free/busy time, location? We would want to change it for all users and would like to avoid going to each users machine.

Microsoft 365 and Office | Subscription, account, billing | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
Answer accepted by question author
  1. Anonymous
    2017-05-24T17:28:34+00:00

    You can change it via PowerShell script, but you will have to adjust this for any new user as well. Here's an example:

    $calendars = Get-Mailbox -RecipientTypeDetails UserMailbox | Get-MailboxFolderStatistics | ? {$_.FolderType -eq "Calendar"} | select @{n="Identity"; e={$_.Identity.Replace("",":")}}

    $calendars | % {Set-MailboxFolderPermission -Identity $_.Identity -User Default -AccessRights LimitedDetails} 

    There are many articles out there that give you detailed instructions, look them up if you need more information.

    2 people found this answer helpful.
    0 comments No comments

4 additional answers

Sort by: Most helpful
  1. Anonymous
    2017-05-24T18:07:25+00:00

    No, not the full script. It's a one-time only action, as it will cycle all the existing mailboxes in the company. For new ones, you only need the last line:

    Set-MailboxFolderPermission -Identity ******@domain.com -User Default -AccessRights LimitedDetails

    0 comments No comments
  2. Anonymous
    2017-05-24T18:03:44+00:00

    Do you have to run the script every time a new user is added?

    0 comments No comments
  3. Anonymous
    2017-05-24T17:58:50+00:00

    Nope. Those are folder-level permissions, the GUI does not expose any controls for such.

    0 comments No comments
  4. Anonymous
    2017-05-24T17:53:22+00:00

    Thank you for the response. Is there any way to change this setting in the GUI?

    0 comments No comments