As you know Teams has been allowing end-users to either blur or set a custom background for their meeting.
Well, now Teams Administrators can now manage this settings to define which option is available to end-users.
The options available for administrators are:
These settings can not be managed from the Teams administration portal (from now?) and requires you to use the Skype for Business Online PowerShell modules (yes, Skype for Business modules) – available at https://www.microsoft.com/en-us/download/details.aspx?id=39366
To manage it, you need to update your Teams Meeting policy/policies using the below command; first to connect to your tenant and then set the policy settings for the end-user as the VideoFiltersMode parameter can not be changed at the policy level
Import-Module SkypeOnlineConnector
$Cred = Get-Credential
$CSSession = New-CsOnlineSession -Credential $Cred
Import-PSSession -Session $CSSession –AllowClobberGrant-CsTeamsMeetingPolicy –Identity <Teams user email address> –PolicyName <any of the option ‘BlurAndDefaultBackgrounds’, ‘BlurOnly’, ‘AllFilters’ or ‘NoFilters’