Additional features, settings, or issues not covered by specific Microsoft Teams categories
Hi Veav,
Thanks for post your question in our forum. Based on your description, you have trouble deleting connector in Teams. In this case, please go to settings under the channel and under Member permissions, please check if you have selected to Allow members to create, update and remove connectors.
Moreover, if the issue persists, I would recommend you use PowerShell command to disable connector in Teams. Below are detailed steps:
- Connect to Exchange Online PowerShell: (for your reference: Connect to Exchange Online PowerShell)
Set-ExecutionPolicy RemoteSigned
$UserCredential = Get-Credential
Note: Please input the account and password that has admin permission of your organization.
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUrihttps://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
Import-PSSession $Session –DisableNameChecking
- Then run following command to Disable the connectors for “Asana”.
Set-UnifiedGroup -Identity "Asana" -connectorsEnabled:$False
- Then you can run following commend to check whether the connector is Disable or not.
Get-UnifiedGroup| Where-Object {$_.ConnectorsEnabled -like "*$false" } | Select Alias| FL
Hope above methods work for you. Please feel free to share the result with us and is you need further assistance, please tell us detailed steps about how you delete connector and share us a screenshot of the PowerShell result for analysis.
Regards,
Jennifer