PowerShell Script - Is it possible to retrieve info on PowerApps included in a Azure Tenant?

Viewed 499

I'm wondering it's possible to create some Powershell script in order to gather all possible information on all PowerApps included in Azure Tenant. I need to collect the owner, connectors, usage stats and stuff like that. I know there's this report:

https://docs.microsoft.com/en-us/power-platform/admin/move-environment-tenant

But Power Apps analytics reports do not display model-driven apps data. Only canvas apps related data is displayed.

Any comments will be more than appreciated. Many Thanks!

1 Answers

The PowerApps PowerShell cmdlets have modules that will display all PowerApps in your tenant. Specifically the Get-AdminPowerApp cmdlet.

This will get you some nice output:

Get-AdminPowerApp | Format-Table -AutoSize | Out-String -Width 4096 | Out-File ./test.txt

Related