To allow certain users to see who owns a private meeting while restricting them from viewing other meeting details, you will need to grant them delegate access to the shared mailbox and ensure they have permission to see private items. Here are the steps to set this up:
- Grant Delegate Access: You can add the user as a delegate to the shared mailbox. This can be done in Outlook by navigating to File > Account Settings > Delegate Access. Here, you can select the user and set the permissions.
- Enable Viewing of Private Items: In the Delegate Permissions dialog box, make sure to check the option that allows the delegate to see private items. This will enable them to see the owner of the private meetings without revealing other details.
- PowerShell Command: Alternatively, you can use PowerShell to grant access. Use the following command:
Replace the email addresses with the appropriate ones for your scenario.Add-MailboxFolderPermission -Identity ******@contoso.com:\Calendar -User ******@contoso.com -AccessRights Editor -SharingPermissionFlags Delegate,CanViewPrivateItems
By following these steps, the specified users will be able to see who owns a private meeting while not having access to other details of the meeting.