Aug 26 2016 09:12 AM
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.
Aug 26 2016 01:18 PM - edited Aug 26 2016 01:23 PM
As usual, you have the answers right at your fingertips, @VasilMichev... And I need to do better at examing the child object lists... 🙂
Jan 19 2021 02:47 PM
@VasilMichev Any recommendations on doing this with PowerShell 7?
Aug 26 2016 11:46 AM
Solution