Forum Discussion
Avishek_Nand
Jun 10, 2024Copper Contributor
Disable "Share to Outlook" options in Microsoft teams for tenant
Hello Everyone, I am looking for assistance in disabling the "Share to Outlook" option across our tenant, either through the Teams admin center or via PowerShell. Despite my efforts to search for...
LeonPavesic
Jun 11, 2024Silver Contributor
Hi Avishek_Nand,
To disable the this option across your tenant in Microsoft Teams, you can use PowerShell. Here’s a brief outline of the steps:
- Open PowerShell as an administrator.
- Connect to the Teams PowerShell module by running:
Connect-MicrosoftTeams
- Execute the following cmdlet to disable the "Share to Outlook" add-in:
Set-TeamsAppSetupPolicy -Identity Global -ShareToOutlookEnabled $false​
- This command will apply the policy at the global (tenant-wide) level. If you need to target specific users or groups, you can replace Global with the appropriate identity.
- Avishek_NandJun 12, 2024Copper Contributor
Thanks for the reply. I have tried out the approach. I do not see any settings called ShareToOutlookEnabled under the TeamsAppSetupPolicy. Please see the attached