Forum Discussion
Secure Score MS Teams
PatrickZegels Maybe you have solved it by now, but I thought to provide somewhat of an answer nontheless.
I have the same issue. Only our score is 1.89. The reason I think is that altough most policies are grayed out and deprecated, they still can be assigned to some users. If such a policy is configured to accept guest users, point are reducted.
From PowerShell you can connect to Teams and list the users that have a specific policy assigned.
Connect-MicrosoftTeams
Get-CsOnlineUser -ResultSize Unlimited | Where {$_.TeamsMeetingPolicy -ne $Null} | fl UserPrincipalName,TeamsMeetingPolicy
Assign those users the default TeamsMeetingPolicy in the GUI or in PowerShell and the number should rise. The command for this is:
Grant-CsTeamsMeetingPolicy -Identity UserPrincipalName -PolicyName $null
In my case, a number of accounts cannot be altered due to "provisioning errors". Still working on that.
- Anthony RussellMay 10, 2023Iron Contributor
I'm getting the same issue. The recommendation for "Configure which users are allowed to present in Teams meetings" is only showing 1/2 and the recommended setting "Roles that have presenter rights in meetings" just does not exist!
We only use the global policy and every user is assigned it, so I have no idea what is going on here or how to solve it. The idea of creating a support ticket gives be PTSD.
- PatrickZegelsMay 10, 2023Copper Contributor
The solution from Maxim_van_Luttikhuizen worked for me.
- Anthony RussellMay 10, 2023Iron ContributorIt didn't work for me. It doesn't list any users. I'm simply confused in that the setting it asks you to change just doesn't exist in any policy.