Unable to delete connector on Microsoft Team

Anonymous
2018-08-22T23:40:35+00:00

I'm unable to delete a connector (Asana) from the channel (of Microsoft Teams) in which it was installed. I'm familiar with the steps on how to do it, but after I follow all the steps I get an error message (attached) that I don't have access as an administrator. However, I attempted to delete the connector from the account that created the organization. 

Microsoft Teams | Microsoft Teams for business | Other

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Anonymous
2018-08-23T10:25:59+00:00

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:

  1. 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

  1. Then run following command to Disable the connectors for “Asana”.

Set-UnifiedGroup -Identity "Asana" -connectorsEnabled:$False

  1. 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

Was this answer helpful?

2 people found this answer helpful.
0 comments No comments

2 additional answers

Sort by: Most helpful
  1. Anonymous
    2018-08-26T01:58:42+00:00

    Hi Veav,

    Thank you for your updates. Glad to hear that the solution works for you. If you have any problems in the future, you may post a new thread in our forum and we will happy to help you.

    Wish you a nice day.

    Best regards,

    Jennifer

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2018-08-23T13:47:16+00:00

    Thank you so much!! This worked!

    Was this answer helpful?

    0 comments No comments