E3 feature enabled report.

Copper Contributor

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

1 Reply

@rpressi 

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.