How to set time zone in microsoft teams - Hybrid Deployment

Rowan Scott 0 Reputation points
2025-03-09T20:49:27.0566667+00:00

Hello,

We are using teams in our organisation, and we're bringing on board some more people who are in different timezones.

I've taken a look at this thread here: https://answers.microsoft.com/en-us/msteams/forum/all/how-to-set-time-zone-in-microsoft-teams/ce83d312-6e86-4ee3-bdd2-0abda9d303f7?page=2

Which shows that changing the settings on outlook.office.com or myaccount.microsoft.com will add this feature. However, this hasn't worked.

I expect that this may be to do with the fact that we are using a Hybrid deployment at the moment. Is there a way to enable this feature?

IMG_0330

IMG_0331

Here are screenshots of my profile, and another users profile - neither show timezones

this is following on from https://answers.microsoft.com/en-us/msteams/forum/all/how-to-set-time-zone-in-microsoft-teams-hybrid/7f127a3b-6e79-4fb8-8315-7f680829055f?messageId=b4aed76c-1e4e-4748-aea9-e925465d542d

Microsoft Exchange Hybrid Management
Microsoft Exchange Hybrid Management
Microsoft Exchange: Microsoft messaging and collaboration software.Hybrid Management: Organizing, handling, directing or controlling hybrid deployments.
2,250 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Tianyi Chang (Shanghai Wicresoft Co Ltd) 1,040 Reputation points Microsoft External Staff
    2025-03-10T01:50:42.8733333+00:00

    Hi @Rowan Scott ,

    Welcome to the Microsoft Q&A platform!

    Perhaps you could try the following cmdlet:
    1.Connect to Exchange Online using PowerShell:

    $UserCredential = Get-Credential
    Connect-ExchangeOnline -UserPrincipalName $UserCredential.UserName -ShowProgress $true
    

    2.Change the user's time zone:

    $users = Get-Mailbox -ResultSize unlimited -Filter{(RecipientTypeDetails -eq <RoomMailbox>)}
    $users | %{Set-MailboxRegionalConfiguration $_.Identity -TimeZone <Pacific Standard Time>}
    

    In your case, it is similar to what I had before:https://learn.microsoft.com/en-us/answers/questions/2168275/time-zone-new-created-users-have-wrong-time-zone-g


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".


  2. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.

    10 deleted comments

    Comments have been turned off. Learn more

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.