Oct 28 2019 06:18 PM
Hi Experts
I want to pull all my users who have powerbi license assigned and visio license assigned with last time used or logged in, is it possible to export this information. using the below syntax i can export the license but how can i get the last time used or logged in information.
Get-MsolUser -All | Where-Object {($_.licenses).AccountSkuId -match "VISIOCLIENT"} | Export-Csv c:\output.csv
Oct 29 2019 12:21 PM