Share via

Delete Otter Notetaker from Teams and Outlook

Oliver Gritz 0 Reputation points
2025-11-04T09:40:39.0733333+00:00

The Otter Notetaker has embedded itself in my Team application and disturbs all calls with automated note taking. Otter also after removal still uses my outlook email removePII to distribute unfinished meeting minutes to all participants. This is spam. I deleted my Otter account and removed Otter as a linked application in my MS 365 account. Still it is embedded in Teams and I can not find it and get rid of it. Please help.

Microsoft Teams | Microsoft Teams for business | Meetings and calls | Other
{count} vote

2 answers

Sort by: Most helpful
  1. Demi-N 13,255 Reputation points Microsoft External Staff Moderator
    2025-11-06T16:52:02.29+00:00

    Hello @Oliver Gritz,

    Thank you for sharing the update.  

    Since Otter still appears embedded despite removing the account and app, the issue likely persists due to residual permissions and assignments in Microsoft Entra. Please follow these advanced steps to fully revoke Otter’s access: 

    Step 1: Remove User Consent via Microsoft Graph PowerShell 

    Before starting, install the Microsoft Graph PowerShell SDK: Install the Microsoft Graph PowerShell SDK | Microsoft Learn 

    Open PowerShell and run: 

    Connect-MgGraph -Scopes "Application.ReadWrite.All", "Directory.ReadWrite.All", "DelegatedPermissionGrant.ReadWrite.All", "AppRoleAssignment.ReadWrite.All" 
    

     

    Get the Service Principal for Otter using its Object ID: 

    $sp = Get-MgServicePrincipal -ServicePrincipalId "<objectID>"   
    

    (Find Object ID in Microsoft Entra Admin Center > Enterprise Applications > Otter > Overview.) 

    User's image

    Remove all delegated permissions

    $spOAuth2PermissionsGrants = Get-MgOauth2PermissionGrant -All | Where-Object { $_.clientId -eq $sp.Id }   
    $spOAuth2PermissionsGrants | ForEach-Object {   
    Remove-MgOauth2PermissionGrant -OAuth2PermissionGrantId $_.Id   
    }   
    

     

    Remove all application permissions

    $spApplicationPermissions = Get-MgServicePrincipalAppRoleAssignment -ServicePrincipalId $sp.Id -All | Where-Object { $_.PrincipalType -eq "ServicePrincipal" }   
    $spApplicationPermissions | ForEach-Object {   
    Remove-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId $sp.Id -AppRoleAssignmentId $_.Id 
    

     

    Step 2: Remove All User and Group Assignments 

    $sp = Get-MgServicePrincipal -ServicePrincipalId "<objectID>" 
    $spApplicationPermissions = Get-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId $sp.Id -All | Where-Object { $_.PrincipalType -eq "ServicePrincipal" } 
    $spApplicationPermissions | ForEach-Object { 
        Remove-MgServicePrincipalAppRoleAssignment -ServicePrincipalId $_.PrincipalId -AppRoleAssignmentId $_.Id 
    

    Step 3: Disable Sign-In for Otter 

    In Microsoft Entra Admin Center

    • Go to Enterprise Applications > Otter > Properties. 
    • Set Enabled for users to sign in to No

     User's image

    These steps will completely revoke Otter’s permissions and prevent it from accessing Teams or Outlook.

    If you need assistance running these commands or confirming the Object ID, please let us know, we’re happy to guide you further. 


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment". 

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread. 

    User's image

    0 comments No comments

  2. Demi-N 13,255 Reputation points Microsoft External Staff Moderator
    2025-11-04T15:46:31.8733333+00:00

    Hello @Oliver Gritz,

    Thank you for posting your question in the Microsoft Q&A Forum. 

    I understand how disruptive this can be, and I’d like to help you resolve it. Please try the following steps: 

    1. Disconnect Otter from Microsoft in Otter Settings 

    • Log in to your Otter account at otter.ai. 
    • Go to Integrations
    • Scroll down to the Microsoft section and click Disconnect
    • After disconnecting, check if Otter is still linked to your Teams or Outlook. 

    User's image

    2. If the issue persists 

    At this point, we’ll need assistance from your IT administrator, as they have access to your organization’s Microsoft Entra Admin portal. Please share these steps with them: 

    • Sign in to Microsoft Entra Admin Center
    • Navigate to Users > [Select your user account] > Applications
    • Locate the Otter application in the list. 
    • Click Remove to revoke Otter’s access. 

    User's image

    These steps should fully disconnect Otter from your Microsoft 365 environment. If you or your IT admin encounter any difficulties during this process, please let us know, and we’ll be happy to assist further. 

    Thank you for your cooperation, and I look forward to your update. 


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment". 

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread. 


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.