Forum Discussion
IT_DSGB
Jun 22, 2020Copper Contributor
Teams Meeting Policy Membership
Hi, I'm looking to get a list of the users that I've assigned a MS Teams Meeting Policy. Is there a Power Shell script to accomplish this? or can it be found anywhere in the admin center?
- Jun 23, 2020
IT_DSGB Hey, you can use the Get-CsOnlineUser cmdlet. It should look something like this for a single policy Get-CsOnlineUser -Filter {teamsmeetingpolicy -eq "RestrictedAnonymousAccess"}
A search took me here https://cann0nf0dder.wordpress.com/2020/03/29/getting-all-ms-teams-user-policies-using-powershell/ which explains it further.
IT_DSGB
Jun 23, 2020Copper Contributor
Hi Linus,
Thanks for the information on group policy assignments. I'm actually looking of a way to see the users I've already assigned a policy to.
Thanks for the information on group policy assignments. I'm actually looking of a way to see the users I've already assigned a policy to.
ChristianBergstrom
Jun 23, 2020Silver Contributor
IT_DSGB Hey, you can use the Get-CsOnlineUser cmdlet. It should look something like this for a single policy Get-CsOnlineUser -Filter {teamsmeetingpolicy -eq "RestrictedAnonymousAccess"}
A search took me here https://cann0nf0dder.wordpress.com/2020/03/29/getting-all-ms-teams-user-policies-using-powershell/ which explains it further.
- IT_DSGBJun 24, 2020Copper Contributor
ChristianBergstrom Thanks! Exactly what I couldn't seem to find.