SOLVED

License Utilization Script

Brass Contributor

I'm having a time getting the licenses assigned to a user to export via export-csv the way I'd expect...  The following code outputs "Microsoft.Online.Administration.UserLicense;Microsoft.Online.Administration.UserLicense" for licenses, still not what I'm hoping for when flattening out the multivalued attribute the way I've done in other scripts...

 

$LicensedUserList = get-msoluser -All | where {$_.IsLicensed -eq "True"}
$LicensedUserList | select DisplayName,SignInName,Title,UsageLocation,@{Name='Licenses';Expression={[string]::join(";",($_.Licenses))}}| Export-CSV $ExportFile -NoTypeInformation

 

 

PS: I'm also not sure what the "Right Group" for this question is on the new forums.  I can't find a "PowerShell" or general "Administration" area, just an area dedicated to the Admin portal.

3 Replies
best response confirmed by VI_Migration (Silver Contributor)
Solution
Try it with $_.Licenses.AccountSkuId

As usual, you have the answers right at your fingertips, @Vasil Michev...  And I need to do better at examing the child object lists... :)

@Vasil Michev Any recommendations on doing this with PowerShell 7? 

1 best response

Accepted Solutions
best response confirmed by VI_Migration (Silver Contributor)
Solution
Try it with $_.Licenses.AccountSkuId

View solution in original post