SOLVED

licenses

Brass Contributor

We have procured 100 licenses for VisioProforO365
how can i import the users list who are using this licenses

5 Replies

Licences can using only users which has attached licence in O365 Admin center. There is list of users.

Hi yes i want to import this custom list

Do you mean that you need a list of users who have installed the Visio?

best response confirmed by Rising Flight (Brass Contributor)
Solution

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

FYI, an easy way to assign licenses to many people is to put them into an Office group and use Group Based Licensing, see https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/active-directory-licensing-what...

 

1 best response

Accepted Solutions
best response confirmed by Rising Flight (Brass Contributor)
Solution

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

View solution in original post