Forum Discussion

rpressi's avatar
rpressi
Copper Contributor
Mar 11, 2021

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

1 Reply

  • farismalaeb's avatar
    farismalaeb
    Iron Contributor

    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.

Resources