Forum Discussion
PushpinderRavi
Oct 10, 2019Copper Contributor
Powershell command to get all users with specific service plan
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 c...
- Oct 11, 2019
And by looking did you mean actually performing a search, as I've answered this question dozen times already? 🙂
Here's how to do it via the MSOnline cmdlets:
Get-MsolUser | ? {$_.Licenses.ServiceStatus | ? {$_.ServicePlan.ServiceName -eq "TEAMS1" -and $_.ProvisioningStatus -eq "Success"}}
VasilMichev
Oct 11, 2019MVP
And by looking did you mean actually performing a search, as I've answered this question dozen times already? 🙂
Here's how to do it via the MSOnline cmdlets:
Get-MsolUser | ? {$_.Licenses.ServiceStatus | ? {$_.ServicePlan.ServiceName -eq "TEAMS1" -and $_.ProvisioningStatus -eq "Success"}}
PushpinderRavi
Oct 15, 2019Copper Contributor
Thanks for your reply, Vasil. I swear, I did find your old posts and executed the same command before, however, it didn't work. However, you may have heard this excuse in the past, so this time this command worked.
Thanks again
Thanks again