Hi all,
I am looking for a powershell command to get list of all users with specific plan in Office 365.
E.g. I need to get all users with Teams enabled in Office 365. I tried the following command and it didn't return anything.
Get-MsolUser -All | Where-Object {($_.licenses).AccountSkuId.ServicePlan -match "Teams1"} | select DisplayName, UserPrincipalName
I can run following command to find users with specific license, e.g. users with Office 365 E3 license, however still no success with specific plans inside E3 license
Get-MsolUser -All | Where-Object {($_.licenses).AccountSkuId -match "ENTERPRISEPACK"} | select DisplayName, UserPrincipalName
Any help, will be greatly appreciated.
Thanks in Advance.