Forum Discussion
skipster3115
May 19, 2020Copper Contributor
Graph powershell list of apps in the app catalog
Hello all
I found this article that tells me how to use Graph to list all the apps in the app catalog . How can i use this in a powershell script so i can get an export ?
https://docs.microsoft.com/en-us/graph/api/teamsapp-list?view=graph-rest-1.0
- Matti PaukkonenIron Contributor
Hi skipster3115 ,
If you just need to list apps in catalog, you can use Microsoft Teams PowerShell module and Get-TeamsApp cmdlet.
https://docs.microsoft.com/en-us/MicrosoftTeams/teams-powershell-overview
You can install Teams module from PowerShell Gallery running:
Install-Module MicrosoftTeams
List apps to a GridView
Connect-MicrosoftTeams Get-TeamsApp | Out-GridView
Results:
- fmustafa_Copper ContributorThanks Matti,
Any idea on how to generate list of Allowed Apps vs List of Blocked Apps?
Thanks, - skipster3115Copper ContributorAwesome. Thanks