Skip to content

Instantly share code, notes, and snippets.

@garrytrinder
Last active November 24, 2023 09:23
Show Gist options
  • Save garrytrinder/3ec052a49547e1f472a9209843c48bd3 to your computer and use it in GitHub Desktop.
Save garrytrinder/3ec052a49547e1f472a9209843c48bd3 to your computer and use it in GitHub Desktop.
Remove custom apps from the Teams organisation store
# assumes you are logged into tenant using CLI for Microsoft 365 (https://aka.ms/cli-m365)
$apps = m365 teams app list --distributionMethod organization | ConvertFrom-Json
$apps | ForEach-Object { m365 teams app remove --id $_.id --force }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment