How to delete users that were added in AllOn meeting policy in MS Teams?

Bajracharya, Prabinesh 417 Reputation points
2022-05-25T22:16:25.143+00:00

We need to delete users that were added in AllOn meeting policy in MS Teams.
How can we delete the user from AllOn meeting policy so that this user gets the global (Org-wide default) policy?

Regards,
Prabinesh

Microsoft Teams
Microsoft Teams
A Microsoft customizable chat-based workspace.
9,199 questions
Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
10,799 questions
SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
9,795 questions
0 comments No comments
{count} votes

Accepted answer
  1. JimmyYang-MSFT 49,286 Reputation points Microsoft Vendor
    2022-05-26T06:48:16.597+00:00

    Hi @Anonymous

    How can we delete the user from AllOn meeting policy so that this user gets the global (Org-wide default) policy?

    You could try to follow these steps to see if it could be changed:

    1)In Teams admin center, click User > Manage Users > select user's display name> Policies >Edit . You could find the following screenshot below. Then you could change the Allon policy to global policy.

    205743-111.png


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.



1 additional answer

Sort by: Most helpful
  1. Bajracharya, Prabinesh 417 Reputation points
    2022-06-07T21:41:19.677+00:00

    Below is the error I am getting.

    Please assist me what am I doing wrong here.

    PS C:\Windows\system32> $AllOnUsers = @(Get-CsOnlineUser |? TeamsMeetingPolicy -eq "AllOn" | %{ $_.ObjectId })
    PS C:\Windows\system32> New-CsBatchPolicyAssignmentOperation -PolicyType TeamsMeetingPolicy -PolicyName $null -Identity $AllOnUsers -OperationName "Batch unassign meeting policy"
    New-CsBatchPolicyAssignmentOperation : Invalid input parameters
    At line:1 char:1

    • New-CsBatchPolicyAssignmentOperation -PolicyType TeamsMeetingPolicy - ...
    • ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    • CategoryInfo : InvalidOperation: ({ OperationName...tchAssignBody }:<>f__AnonymousType64`2) [New-CsBatc
      hPoli...ion_NewExpanded], Exception
    • FullyQualifiedErrorId : ClientError,Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Cmdlets.NewCsBatchPolicyAssignme
      ntOperation_NewExpanded
      PS C:\Windows\system32>
    0 comments No comments