Greetings everyone,
I would like to list all our users having either :
Power Apps for Dynamics 365
Power Apps for Office 365
Similar to what I can get with this powershell command, which will display all users still on a trial license:
Get-MsolUser -All | SORT-OBJECT DisplayName | Where-Object {($_.licenses).AccountSkuId -match "POWERAPPS_VIRAL"} | ft
I can get a list of users on Entreprise E1 and E3 by replacing the "POWERAPPS_VIRAL" code but don't see how I can isolate specifically those who have a powerApps plan activated.
Thanks!