Sep 01 2023 12:17 PM
I'm hoping someone can confirm a behavior I'm seen in the Microsoft Teams Admin Center.
I'm curious to see what happens. In my Org and Dev Tenant the Shared channel is not added to the list of channels and does not appear anywhere in Teams. Yet if you navigate to the SharePoint Admin Center locate the team in the list of sites and under the sites link you can see that the underlying SharePoint site was created for the Shared Channel. This does not happen with Private Channels they are created even if the Admin account is an owner of the Team or not. Shared channels work for me when the Admin account is added an Owner of the Team.
Sep 04 2023 12:21 AM
Sep 04 2023 12:36 AM
@howeian Has yours changed at all since posting? This thread also highlighted the same issue with mixed experiences: Administering Shared Channels - Microsoft Community Hub
It's worth reporting to Microsoft. I've tried the same thing on my tenant and have the same issue. Definitely an issue if shared channels can't be seen by admins.
Sep 05 2023 01:25 PM
@paul keijzers No documentation, just going through the Teams Admin Center and performing the options available to me. Not sure which setting you're not seeing. Maybe shared channels are not enabled for you?
Sep 05 2023 01:30 PM
Sep 05 2023 01:53 PM
@howeian now that you mention it, shared channels have only been around for about a year in General Availability. This may not have been working since the start.
Sep 12 2023 12:39 PM
SolutionSep 20 2023 02:55 AM
@howeian I encountered exactly the same error and of course saw the post afterwards. Have you managed a way to delete those shared channels properly?
Sep 20 2023 07:23 AM
I couldn't find a way to delete these sites through the Admin Center UI. Had to use PowerShell. Connection method may be different depending on your tenant settings. Deleted sites also do not get added to the Deleted sites list in the SharePoint Admin center but can be handled through PowerShell.
Import-Module Microsoft.Online.Sharepoint.PowerShell
#Variables for processing
$AdminSiteURL = "https://<sharepoint admin url>"
$SiteCollURL = "https://<site to delete path>"
#Connect to SharePoint Online
Connect-SPOService -url $AdminSiteURL
#delete sharepoint online site collection using powershell
Remove-SPOSite -Identity $SiteCollURL -NoWait -Confirm:$false