Forum Discussion
Tim McGrath
May 05, 2020Copper Contributor
Show users assigned to a Meeting Policy
Greetings,
Is there a way to show or list out users assigned to a specific meeting policy? If I wasnted to see all the users assigned to the RestrictAnonymousAccess policy, is there a way to list these users out?
Any help is appreciated.
Thanks,
Tim
Tim McGrath Hello Tim, yes. You should use PowerShell for this. I believe you need to use the Get-CsOnlineUser in combination with the 'CsTeamsMeetingPolicy'. Perhaps something like Get-CsOnlineUser -Filter {teamsmeetingpolicy -eq "RestrictedAnonymousAccess"} There should be plenty of articles and guides out there so do a search for more assistance (I am not a PowerShell guru).
Good luck!
- ChristianBergstromSilver Contributor
Tim McGrath Hello Tim, yes. You should use PowerShell for this. I believe you need to use the Get-CsOnlineUser in combination with the 'CsTeamsMeetingPolicy'. Perhaps something like Get-CsOnlineUser -Filter {teamsmeetingpolicy -eq "RestrictedAnonymousAccess"} There should be plenty of articles and guides out there so do a search for more assistance (I am not a PowerShell guru).
Good luck!
- Tim McGrathCopper Contributor
ChristianBergstrom thank you! Exactly what I was looking for