Forum Discussion
View everyone assigned to a meeting policy
We are creating a custom Meetings policy to assign to users who need to be able to record meetings. By default, we have removed the ability to record meetings as requested by Legal. There are instances where users will be allowed to record meetings so that is why we created the custom Meetings policy. I can manage users in the admin center and then add them to the policy, but how do I audit who has that policy assigned? I am running into a roadblock on this one right now.
- teams1535Microsoft
Hi Joe Volk
notedown the created custompolicyName.
Please connect Teams using powershell run below command to get the users.
Import-Module SkypeOnlineConnector
$userCredential = Get-Credential
$sfbSession = New-CsOnlineSession -Credential $userCredential
Import-PSSession $sfbSessionGet-CsOnlineUser -Filter {TeamsMeetingPolicy -eq 'CustompolicyName'}|fl UserPrincipalName