Forum Discussion

Chad Conrow's avatar
Chad Conrow
Brass Contributor
Aug 26, 2016

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.

Share

Resources