Forum Discussion

skipster3115's avatar
skipster3115
Copper Contributor
May 19, 2020

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

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:

     

     

     

    • fmustafa_'s avatar
      fmustafa_
      Copper Contributor
      Thanks Matti,
      Any idea on how to generate list of Allowed Apps vs List of Blocked Apps?
      Thanks,

Resources