Extract list of Apps from Microsoft Teams to Excel

BHASIN, Pankaj (CNWL NHS TRUST) 0 Reputation points
2024-10-14T11:47:07.8566667+00:00

Good Morning Team,

I'll be very grateful if you could please help me in extracting list for all the apps in my account from Microsoft Teams to Microsoft Excel.

Many thanks & kind regards

Microsoft Teams Development
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Meghana-MSFT 4,116 Reputation points Microsoft External Staff
    2024-10-15T11:30:39.92+00:00

    You can use "Get-TeamsApp" powershell command which returns app information from the Teams tenant app store. https://learn.microsoft.com/en-us/powershell/module/teams/get-teamsapp?view=teams-ps

    Below is an example for your reference.

    
    # Connect to Microsoft Teams
    Connect-MicrosoftTeams
    
    # Get the list of apps
    $apps = Get-TeamsApp
    
    # Export the list to a CSV file
    $apps | Select-Object DisplayName, Id | Export-Csv -Path "C:\Users\YourUsername\Documents\TeamsApps.csv" -NoTypeInformation
    
    
    

    Alternatively, you can use this Graph API as well - https://learn.microsoft.com/en-us/graph/api/appcatalogs-list-teamsapps?view=graph-rest-1.0&tabs=http

    Thanks,

    Meghana Peddamma


    If the response is helpful, please click "Accept Answer" and upvote it. You can share your feedback via Microsoft Teams Developer Feedback link. Click here to escalate.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.