Forum Discussion
rpressi
Mar 11, 2021Copper Contributor
E3 feature enabled report.
I need to extract a report inside a Tenant of all users that have the Whiteboard application enabled. I looked al over the internet but I was not able to find it. Pplea
farismalaeb
Mar 12, 2021Steel Contributor
Hi
I wrote a quick script for this one
foreach ($Li in $AllUsers){
if ((($Li.Licenses.ServiceStatus | where {$_.ServicePlan.ServiceName -like "WHITEBOARD_PLAN2"}).ProvisioningStatus -Like "Success")){
$Li.UserPrincipalName
$Li.Licenses.ServiceStatus | where {$_.ServicePlan.ServiceName -like "WHITEBOARD_PLAN2"}
}
-------------
If this solution helped you, please click on Best Response.