Graph powershell list of apps in the app catalog

Copper Contributor

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

3 Replies

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:
Annotation 2020-05-19 062720.png

 

 

 

Awesome. Thanks
Thanks Matti,
Any idea on how to generate list of Allowed Apps vs List of Blocked Apps?
Thanks,