MICROSOFTTEAMS

Microsoft Teams Snapchat Videofilters

Andres Bohren
Hi All, Three days ago, Snapchat Lenses for Microsoft Teams where anounced. Oh, Snap! Let Your Silly Side Shine with Snapchat Lenses for Microsoft Teams Alldough i don’t see a business Value in enabling SnapChat Camera Filters, i wanted to try it out, so i can advise my customers. You need to allow the Snapchat Lenses App in Teams Apps. Overview of app management and governance in Teams admin center

Microsoft Teams Avatar

Andres Bohren
Hi All, Already a few weeks back i was able to configure my Avatar for Microsoft Teams. Go to “Apps” in your Teams Client and search for “Avatar” Add the App Now you will be guided to create your first Avatar Select one of the Avatars You can customize the Avatar Today when i joined a Meeting, i was able to select my Avatar. But for that you need to be in the Public Preview of Microsoft Teams Client.

Microsoft Teams Open apps in browser for incoming PSTN calls

Andres Bohren
Hi All, This feature is already a few Months old, but i haven’t tested it. Now i had the Time to have a look into the Feature and test it out. Calling policies in Teams Teams Calling Policy I’ve changed this to https://local.ch/s/{phone} Let’s have a look at it in PowerShell Get-CsTeamsCallingPolicy -Identity IcewolfAllowCalling Now we need to grant that Policy to the User Grant-CsTeamsCallingPolicy -Identity a.bohren@icewolf.ch -PolicyName IcewolfAllowCalling Get-CsOnlineUser -Identity a.

MicrosoftTeams PowerShell Module 5.1.0 released as GA

Andres Bohren
Hi All, Just a few Hours ago, Microsoft has released the MicrosoftTeams PowerShell Module 5.1.0 to the PowerShell Gallery. MicrosoftTeams 5.1.0 Microsoft Teams PowerShell Release Notes Check installed Module and what’s available in the PowerShell Gallery Get-InstalledModule MicrosoftTeams Find-Module MicrosoftTeams Uninstall the old Module and install the newest Module Uninstall-Module MicrosoftTeams Install-Module MicrosoftTeams Get-InstalledModule MicrosoftTeams Testing Connect-MicrosoftTeams Get-CsOnlineUser -Identity a.bohren@icewolf.ch Some new Filering (since 5.0) Get-CsOnlineUser -Filter {City -eq 'Bern'} | ft UserPrincipalName Get-CsOnlineUser -Filter {Company -like 'Ice\*'} | ft UserPrincipalName Get-CsOnlineUser -Filter {FeatureTypes -contains "PhoneSystem"} | ft UserPrincipalName Get-CsOnlineUser -Identity a.

New Teams Client for Windows available

Andres Bohren
Hi All, Welcome to the new era of Microsoft Teams According to the Video the New Teams Client starts double as fast, change a channel is double as fast, joining a Meeting is faster and it uses only half of the Memory as the Classic Teams Client. To be able to Test the new Client you need to have a the Teams Preview enabled. You can check this also with the MicrosoftTeams PowerShell Module

Pronouns on your profile in Microsoft 365

Andres Bohren
Hi All, I’ve stubled across the Message below in the Microsoft 365 Message Center and decidet to give it a try. Turn pronouns on or off for your organization in the Microsoft 365 admin center Pronouns on your profile in Microsoft 365 Pronouns best practices Frequently asked questions about pronouns in Microsoft 365 M365 Admin Center > Org Settings > Security & privacy > Pronouns It’s disabled by default and has to be enabled by an Administrator

MicrosoftTeams PowerShell Module 5.0.0 released as GA

Andres Bohren
Hi All, Just a few Hours ago, Microsoft has released the MicrosoftTeams PowerShell Module 5.0.0 to the PowerShell Gallery. MicrosoftTeams 5.0.0 Microsoft Teams PowerShell Release Notes Check installed Module and what’s available in the PowerShell Gallery Get-InstalledModule MicrosoftTeams -AllVersions Find-Module MicrosoftTeams Uninstall the old Module and install the newest Module Uninstall-Module MicrosoftTeams Install-Module MicrosoftTeams Get-InstalledModule MicrosoftTeams Testing Connect-MicrosoftTeams Get-CsOnlineUser -Identity a.bohren@icewolf.ch Some new Filering Get-CsOnlineUser -Filter {City -eq 'Bern'} | ft UserPrincipalName Get-CsOnlineUser -Filter {Company -like 'Ice\*'} | ft UserPrincipalName Get-CsOnlineUser -Filter {FeatureTypes -contains "PhoneSystem"} | ft UserPrincipalName Regards

MicrosoftTeams PowerShell Module 4.9.3 released as GA

Andres Bohren
Hi All, Just a few Hours ago, Microsoft has released the MicrosoftTeams PowerShell Module 4.9.3 to the PowerShell Gallery. MicrosoftTeams 4.9.3 Microsoft Teams PowerShell Release Notes Check installed Module and what’s available in the PowerShell Gallery Get-InstalledModule MicrosoftTeams -AllVersions Find-Module MicrosoftTeams Uninstall the old Module and install the newest Module Uninstall-Module MicrosoftTeams Uninstall-Module MicrosoftTeams Install-Module MicrosoftTeams I’ve already blogged how to set up Azure AD App and Certificate Authentication for Microsoft Teams

Microsoft Teams FeedbackPolicy

Andres Bohren
Hi All, Do you know that there is a Feedback Policy in Microsoft Teams? Manage feedback policies in Microsoft Teams Connect-MicrosoftTeams Get-CsTeamsFeedbackPolicy Let’s enable FeatureSuggestions on the Global Policy Set-CsTeamsFeedbackPolicy -Identity Global -EnableFeatureSuggestions $True Get-CsTeamsFeedbackPolicy Let’s see all the Policies for my User. Teams Feedback Policy is blank - that means that the Global Policy will be applied Get-CsOnlineUser -Identity a.bohren@icewolf.ch | fl *pol* You can’t see that Policy in Teams Admin Center (TAC)

Microsoft Teams block an inbound call

Andres Bohren
Hi All, Ever needed to Block a Telephone Number in Microsoft Teams Enterprise Voice. Here is how that can be done. Block inbound calls Get-CsInboundBlockedNumberPattern New-CsInboundBlockedNumberPattern -Name "BlockMobile-01" -Enabled $True -Description "BlockMobile-01" -Pattern "^\+?41796937148$" Be aware, that it could take up to 24 Hours until that Number is blocked. Then the Caller will hear only a busy Signal Get-CsInboundBlockedNumberPattern You can Test your pattern Matching with the following Commandlet Test-CsInboundBlockedNumberPattern -PhoneNumber +41796937148 Test-CsInboundBlockedNumberPattern -PhoneNumber 0796937148 Test-CsInboundBlockedNumberPattern -PhoneNumber 796937148 Remove-CsInboundBlockedNumberPattern -Identity BlockMobile-01 Get-CsInboundBlockedNumberPattern Regards