Share via

Set calendar permission for My organization to None by default

X-Box-11-2021 480 Reputation points
2026-03-03T04:22:25.6+00:00

Hi all,

As I understand in Exchange Online by default My organization has "Can view all details" permission.

CleanShot 2026-03-03 at 15.07.33

Is it possible to set default permission to None for existing and users.

Exchange Online
Exchange Online

A cloud-based service included in Microsoft 365, delivering scalable messaging and collaboration features with simplified management and automatic updates.

0 comments No comments
{count} votes

Answer accepted by question author
  1. Vergil-V 10,175 Reputation points Microsoft External Staff Moderator
    2026-03-03T05:13:00.6433333+00:00

    Hi @X-Box-11-2021

    Thanks for reaching out to the Microsoft Q&A forum.  

    Based on my research, if you want to change the calendar permission of existing users in your organization to None, this must be done through PowerShell. The process requires looping through each user in your tenant and setting the AccessRights value to None. 

    Below is an example PowerShell script that you can use to achieve this result: 

    foreach($user in Get-Mailbox -RecipientTypeDetails UserMailbox)  
    { 
    	Set-MailboxFolderPermission -Identity ($user.alias+':\calendar') ` 
    		-User Default -AccessRights None
    } 
     
    

    Please note that this script only applies to users who already exist in your tenant. It will not affect newly created accounts. If new users are added later, you will need to run the script again to apply the same permission. Users can also change their calendar permissions on their own if they choose to. 

    I hope this brings helpful insight. If you have any updates, please feel free to share. 


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".         

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.