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
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
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 "
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
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.
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
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
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
Hi All, I was wondering why teams Search shows some SharedMailboxes and some not. For Example: There are two Shared Mailboxes "SharedForward" and "SharedForwardSMTP" that can be found over Teams Searchbar on Top (does not matter if Teams Web or Teams for Windows).
The fun part is, that you can even send a chat message or call them
On the other hand there is a Shared Mailbox Postmaster - that shows no result when searching
Hi All, A few Days ago, Microsoft has released the MicrosoftTeams PowerShell Module v3.2.0 Preview to the PSGallery. Here are the Release notes https://docs.microsoft.com/en-us/MicrosoftTeams/teams-powershell-release-notes
Find-Module -Name MicrosoftTeams -AllowPrerelease Install-Module -Name MicrosoftTeams -AllowPrerelease -Force
Let's see how long it takes to load the Module. It's about the same as with the Microsoft Teams PowerShell 3.1.1
Measure-Command -Expression {Import-Module MicrosoftTeams} Get-Module
My usual Tests
Connect-MicrosoftTeams
Get-Team Get-CsOnlineUser -Identity a.bohren@icewolf.ch | fl *Ent*, *host*, *voice*, *um* Regards Andres Bohren