Forum Discussion
License Utilization Script
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.
- Try it with $_.Licenses.AccountSkuId
- Try it with $_.Licenses.AccountSkuId
- Chad ConrowBrass Contributor
As usual, you have the answers right at your fingertips, VasilMichev... And I need to do better at examing the child object lists... :)
- JaredGoodpastureCopper Contributor
VasilMichev Any recommendations on doing this with PowerShell 7?