
Announcements
Hello,
How do I get total number of Apps and Flows without CoE Starter Kit? Is it possible with PowerShell commands?
Thanks,
It is supported in PowerShell. More info:
https://powerapps.microsoft.com/en-us/blog/gdpr-admin-powershell-cmdlets/
Specifically Get-AdminFlow for all Flows
and
Specifically Get-AdminPowerApp for all Power Apps
You can run the above as Global Admin if you need a global count across all environments in the whole tenant. For example, from the above docs link:
EXAMPLE 1
Get-AdminPowerApp
Returns all apps from all environments where the calling user is an Environment Admin. For Global admins, this command searches across all environments in the tenant.
Here is alternative solution - (but the Flow or App itself may count in the total number, so you may not prefer it to the above):
You can actually do this from a Power Automate Flow and/or Power Apps Canvas App itself, from within an actual Flow and/or App or both if you wanted:
For how many Flows -> Flow Management:
https://docs.microsoft.com/en-us/connectors/flowmanagement/
| List Flows as Admin |
List all flows in the given environment you have admin access to. |
For how many Apps -> Power Apps For Makers:
https://docs.microsoft.com/en-us/connectors/powerappsforappmakers/
| Get Apps |
Returns a list of apps. |
Check if this helps @dave8