Uninstalling The Teamgage Microsoft Teams App
It may be necessary to uninstall the Teamgage app for a number of reasons, if you find yourself in this situation we provide a couple of useful Powershell scripts which can be used to bulk uninstall for either Teams or users.
Uninstall the app for all users in a Team/Channel:
- $appId = '61aa6197-4b01-4bb4-a7a6-6ecf477654a0'
- $teamId = 'TEAM ID HERE'
- Get-TeamUser -GroupId $teamId | ForEach-Object {
- $appInstalled = Get-TeamsAppInstallation -UserId $_.UserId -AppId $appId
- if ($appInstalled) {
- Write-Host "Uninstalling from: $($_.Name)"
- Remove-TeamsAppInstallation -UserId $_.UserId -AppId $appId
- }
- else {
- Write-Host "Skipping user: $($_.Name)"
- }
- }
Uninstall the app from all Teams/Channels:
- $appId = '61aa6197-4b01-4bb4-a7a6-6ecf477654a0'
- Get-Team -Archived $false | ForEach-Object {
- $appInstalled = Get-TeamsAppInstallation -TeamId $_.GroupId -AppId $appId
- if ($appInstalled) {
- Write-Host "Uninstalling from: $($_.DisplayName)"
- Remove-TeamsAppInstallation -TeamId $_.GroupId -AppId $appId
- }
- else {
- Write-Host "Skipping team: $($_.DisplayName)"
- }
- }
Related Articles
Install the Teamgage App for Microsoft Teams
This guide provides instructions for installing the Teamgage app in Microsoft Teams for your organisation. Prerequisites Before installing, ensure your organisation has completed: Azure AD Setup Guide (Single Sign-On & Microsoft Teams Integration) ...
Microsoft Teams Notification Setup
Set up an integration between Teamgage and Microsoft Teams so notifications are delivered via Teams chat instead of email. Learn more about the full Microsoft Teams integration here Prerequisites Your organisation must have Azure AD SSO set up with ...
Microsoft Teams and Teamgage Overview
The Teamgage integration with Microsoft Teams allows employees to: Receive Teamgage notifications directly in Teams chat Submit feedback & launch the Huddle dashboard to review results With Single Sign-On (SSO), users can enjoy a seamless experience ...
Receiving Teamgage Huddle Notifications via MS Teams
Teamgage Huddle notifications appear directly in Microsoft Teams, keeping you updated without leaving your workspace. User Notifications User Welcome Submission User Submission User Submission Thank You Manager Notifications Manager Welcome Manager ...
Azure AD Setup Guide (Single Sign-On & Microsoft Teams Integration)
The Azure Active Directory (Azure AD) integration with Microsoft Teams for Teamgage allows seamless access and engagement. With Single Sign-On (SSO), employees can log in with one click using their existing work credentials. Once connected, they can ...