May 21 2019 12:23 AM
May 21 2019 12:35 AM
SolutionMay 21 2019 12:41 AM
@adam deltinger Thanks for your quick reply. Yes, I've created the team from the Teams app. I've seen this behaviour at multiple tenants now.
May 21 2019 12:53 AM
Hi! I haven't seen this in any tenants! Are you sure you/they didn't create it from an existing group?
Can you replicate it?
Adam
May 21 2019 01:59 AM
@adam deltinger I've carefully tried to replicate this. You are totally right, I see what causes the confusion. I've created a new team from Microsoft Teams. When I open Outlook Online, this group is not displayed. When opening the corresponding teamsite and then clicking on the Conversations link, Outlook Online opens and displays the group conversations in Outlook. At that moment, the group is displayed on the left in the Outlook Groups list. After a refresh in the browser, the group is still displayed on the left side. However, when closing Outlook Online en re-opening it, the group is disappeared again. Thanks for thinking with me!
May 21 2019 02:01 AM
Yeah! this is how it works :)
If you're satisfied with the solution, please set as "best response"
Adam
May 21 2019 07:49 AM
@adam deltingeror @RobinSlagman can either of you clarify what you are doing when testing this? When opening the corresponding teamsite and then clicking on the Conversations link, Outlook Online opens and displays the group conversations in Outlook.
May 21 2019 11:42 AM
@RobinSlagman I regularly use a SharePoint Site Script with my clients to remove the conversation link and add the Teams link, from Powershell like this.
$script = @' { "$schema": "schema.json", "actions": [ { "verb": "removeNavLink", "displayName": "Conversations", "isWebRelative": true }, { "verb": "addNavLink", "url": "/_layouts/15/groupstatus.aspx?Target=TEAM", "displayName": "Teams", "isWebRelative": true } ], "bindata": {}, "version": 1 }; '@ $sitescript = Add-SPOSiteScript -Title "Teams Links" -Description "A site script to remove standard links for new SharePoint sites" -Content $script Add-SPOSiteDesign -Title "Teams Links" -WebTemplate "64" -SiteScripts $sitescript.id -IsDefault
By setting the script as the default for -WebTemplate "64" it will be automatically applied to all new SharePoint Team Sites, including those created from Teams.
May 23 2019 07:21 AM
@David Christensen what you describe is exactly what happens here and what causes the confusion. When you just go to Outlook, you'll not see the group listed. But when you click on the Conversations link in the SharePoint site of the group, the group conversations in Outlook open up and the group is listed in the left menu.
May 23 2019 07:22 AM
@Steven Collier Thanks! This is really useful, I appreciate this!
May 30 2019 11:50 AM
@Steven Collier, sending this conversation in a slightly different twist, Can one enable the CALENDAR for an Office Group that was created using TEAMS?
I can delete the Team/Group, then start over by first creating the OFFICE GROUP, but would like to avoid that.
May 30 2019 12:19 PM
@Paul Beiler you can use Exchange admin or powershell to make the mailbox and it's calendar visible in Outlook again, but they are both controlled by the same switch.
May 30 2019 02:17 PM - edited May 30 2019 06:40 PM
@Steven Collier, Hmmm. I went into Powershell, did not see a parameter for this. I'll keep digging. Thanks.
And I'm guessing you were not referring to the Office 365 Exchange Online. I found no switches there.
May 30 2019 07:15 PM
And found it for anyone else who wanted it …
set-UnifiedGroup <GroupName> -HiddenFromExchangeClientsEnabled:$False
Apr 24 2020 04:00 AM
@RobinSlagman gravedigging? Dunno, but I had a similar issue too and I found the answer to my problem here:
https://www.danny-davis.com/blog/2019/4/11/show-hidden-teams-in-outlook-groups
Maybe could be helpful as well to someone.
Nov 07 2020 10:16 PM