MicrosoftTeams

MicrosoftTeams PowerShell Module 4.3.1-preview released

Andres Bohren
Hi All, Yesterday Microsoft has released another Microsoft Teams PowerShell Module in Preview. Seems to be mostly optimization and fixing some minor errors. Couln't find yet documentation to the new commandlets s New-CsBatchTeamsDeployment & Get-CsBatchTeamsDeploymentStatus. PowerShell Gallery Microsoft Teams 4.3.1-preview https://www.powershellgallery.com/packages/MicrosoftTeams/4.3.1-preview Find-Module MicrosoftTeams -AllowPrerelease Install-Module MicrosoftTeams -AllowPrerelease -Force Some of my usual Tesing Connect-MicrosoftTeams Get-Team Get-CsOnlineUser -Identity a.bohren@icewolf.ch | fl *Ent*,*host*,*voice*, *line* Regards Andres Bohren

MicrosoftTeams PowerShell Module 4.3.0 released

Andres Bohren
Hi All, Yesterday Microsoft released Microsoft Teams PowerShell Module 4.3.0 GA in PowerShell Gallery. Seems to be mostly fixes. MicrosoftTeams 4.3.0 https://www.powershellgallery.com/packages/MicrosoftTeams/4.3.0 Find-Module MicrosoftTeams Install-Module MicrosoftTeams -Force Check if the newest Module has been imported Import-Module Get-Module Testing Connect-MicrosoftTeams Get-Team Get-CsOnlineUser -Identity a.bohren@icewolf.ch | fl *Ent*,*host*,*voice*, *line* Regards Andres Bohren

Microsoft Teams TimeZone Settings

Andres Bohren
Hi All, Did you notice the Timezone Information in your Teams Contacts within your Organization. But where does that come from? The User can set the Timezone in his Account Settings https://myaccount.microsoft.com/settingsandprivacy/language Basically it's the Timezone from Exchange/Outlook. You can set that in Outlook on the Web https://outlook.office.com/mail/options/general/timeAndLanguage You can show a List ov available Timezones with the following Command $TimeZone = Get-ChildItem "HKLM:\Software\Microsoft\Windows NT\CurrentVersion\Time zones" | foreach {Get-ItemProperty $_.PSPath}; $TimeZone | sort Display | Format-Table -Auto PSChildname,Display

Microsoft Teams Camera Brightness and Soft-Focus Filters

Andres Bohren
Hi All, Did you notice, that you can adjust the Camera Settings in Teams? I am running Teams in the Preview Mode and have the following Settings there: "Brightness" and "Soft focus" I think that's a good improvement. You can even activate that when you join a Meeting. Click on the gear Icon and then the change it in the Device Settings Menu on the right hand side. Regards Andres Bohren

MicrosoftTeams PowerShell Module 4.2.0 released

Andres Bohren
Hi All, Did you notice, that there is already a new Microsoft Teams PowerShell Module Available? Microsoft Released 4.2.0 into GA.Two Weeks ago they published 4.1.0. I like the Fact that they fixed issues. On the other Hand, they might invest a bit more in Quality Control and don't have to release that often. For Installing use "Install-Module". If you want Side-By-Side (Multiple Versions of the Module) then you need to use the "

UserCallingSettings in Microsoft Teams Admin Center (TAC)

Andres Bohren
Hi All, Since a few days you can view and set the UserCallingSettings in Microsoft Teams Admin Center (TAC). It seems that the "if unanswered" (VoiceMail in my case) Setting is not yet represented correctly. Teams Client > Settings > Calls Connect-MicrosoftTeams Get-CsUserCallingSettings -Identity a.bohren@icewolf.ch Regards Andres Bohren

Use Set/Remove-CsPhoneNumberAssignment in MicrosoftTeams

Andres Bohren
Hi all, I hope you all have already seen the Change in M365 Message Center for assigning Teams Phone Number Set-CsPhoneNumberAssignment https://docs.microsoft.com/en-us/powershell/module/teams/set-csphonenumberassignment?view=teams-ps Remove-CsPhoneNumberAssignment https://docs.microsoft.com/en-us/powershell/module/teams/remove-csphonenumberassignment?view=teams-ps But there are also other Requirements before adding a Phone Number in Teams: The User must have a valid Teams License assigned The User must have a Teams Phone (PhoneSystem/MCOEV) License assigned We can check that with the Microsoft.Graph PowerShell Module #Get License from User Connect-MgGraph -Scopes User.

Microsoft Teams Shared Channels Policy enabled by default

Andres Bohren
Hi All, Be aware that the Teams Policies have the Shared Channels enabled by default. So disable them or create a separate Policy for your tests. My Teams Client is in Preview Mode But i am still not able to create Shared Channels According to the Article below - it will look like below Microsoft Teams Connect shared channels is rolling out to public preview https://techcommunity.microsoft.com/t5/microsoft-teams-blog/microsoft-teams-connect-shared-channels-is-rolling-out-to-public/ba-p/3252901 Regards Andres Bohren

MicrosoftTeams PowerShell Module 4.1.0 released

Andres Bohren
Hi All, Yesterday the PowerShell Module for MicrosoftTeams 4.1.0 has been released as GA. MicrosoftTeams 4.1.0 https://www.powershellgallery.com/packages/MicrosoftTeams/4.1.0 Find-Module MicrosoftTeams Install-Module MicrosoftTeams -Force Usually i test some of the Commands Connect-MicrosoftTeams Get-Team Get-CsOnlineUser -Identity a.bohren@icewolf.ch | fl *Ent*,*host*,*voice*, *um* Be aware, that for new M365 Tenants you can only use MicrosoftTeams PowerShell Module 4.x.x. Older Tenants have to switch to 4.x.x until June 2022. Teams PowerShell Module - Supported Versions https://docs.microsoft.com/en-us/microsoftteams/teams-powershell-supported-versions Regards Andres Bohren

Check for Microsoft Teams Update with PowerShell

Andres Bohren
Hi All, I was inspired to look a little bit deeper into the Update Mechanism of Microsoft Teams by the "Teams MSI Override" GitHub Project. You can check your Version in Teams by Settings > Info > Version Then the current Version and update Date is shown in the top bar You can invoke a update check in Settings > check for updates Then Teams will search for updates I've traced this Action in Fiddler