Forum Discussion
skb5525
Jan 22, 2021Copper Contributor
Viewing channel calendars in Outlook
Hello, Is there a method by which our organization can view individual as well as a combined view of Teams channel calendars in Outlook? In other words, we'd like to be able to see our own pe...
Jan 22, 2021
A channel calendar is really not a calendar of it's own but a filtered calendar based on the Group calendar that is created for every team. This can be added to Outlook, but by default hidden. you need to use Powershell to make this group calendar visible in outlook. And remeber this one will show events created in all channels of the team.The channel calender which you can add as a tab just use this calender and a filter to just shoe the events of that channel..
Here's a guide to what you need to do:
Connect to Exchange Powershell module and run the following command:
Set-UnifiedGroup -Identity MyTeam -HiddenFromExchangeClientsEnabled:$False
An example guide here:
https://olafd.wordpress.com/2018/10/13/make-microsoft-teams-team-visible-in-outlook/
Official doc:
https://docs.microsoft.com/en-us/powershell/module/exchange/set-unifiedgroup?view=exchange-ps
Adam
Here's a guide to what you need to do:
Connect to Exchange Powershell module and run the following command:
Set-UnifiedGroup -Identity MyTeam -HiddenFromExchangeClientsEnabled:$False
An example guide here:
https://olafd.wordpress.com/2018/10/13/make-microsoft-teams-team-visible-in-outlook/
Official doc:
https://docs.microsoft.com/en-us/powershell/module/exchange/set-unifiedgroup?view=exchange-ps
Adam
TomaszQ94
Dec 09, 2022Copper Contributor
Since I am a dummy, could you please tell me what should be changed in this code? name of team i suppose should be given in "", but which one is it exactly? The one displeied in MS Teams ad Channel name?
In this intial code to run connection to exchange - anything to be changed or just executed?
Thanks so much in advance!