Forum Discussion

Re: licenses

To import the list of users assigned with Visio license using PowerShell, here's the command:

 

First, you need to login to PowerShell: Connect-MsolService

Run Get-MsolAccountSku to get the ID of Visio that you want to export (e.g. VISIOCLIENT)

Then use this to export users with assigned Visio license: Get-MsolUser -All | Where-Object {($_.licenses).AccountSkuId -match "VISIOCLIENT"} | Export-Csv c:\VisioUsers.csv

No RepliesBe the first to reply

Resources