Reputation: 687
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://learn.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!
Upvotes: 2
Views: 1492
Reputation: 4375
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
Upvotes: 1