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...
Matti Paukkonen
May 19, 2020Iron 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_Sep 08, 2021Copper ContributorThanks Matti,
Any idea on how to generate list of Allowed Apps vs List of Blocked Apps?
Thanks, - skipster3115May 19, 2020Copper ContributorAwesome. Thanks