configuracion lenguage exchange

SEBASTIAN MARTIN BALLESTERO 40 Reputation points
2024-01-12T22:23:05.2166667+00:00

Buenas necesito saber donde puedo configurar de manera fija de zona horaria al abrir un buzón por primera vez, si existe algún comando que permita configurarlo y en alguna extensión dentro de alguna carpeta de la estructura de exchange cuando se instala en el servidor, espero ser claro. El problema ocurre cuando por primera vez abren el buzón se equivocan en la configuración de la zona horaria, debiendo solucionarlo por medio de comandos, leyendo los comandos no hemos encontrado nada para dejar fija la zona horaria. Espero respuesta de ayuda saludos Atte.-

Exchange Server
Exchange Server
A family of Microsoft client/server messaging and collaboration software.
1,435 questions
0 comments No comments
{count} votes

Accepted answer
  1. Wandi Ding -MSFT 2,970 Reputation points Microsoft Vendor
    2024-01-15T02:33:31.24+00:00

    Welcome to our forum!

    Currently in Microsoft Q&A we only support English, could you please edit your question into English?Then we can help to solve your issues, thanks for your understanding.

    According to the machine translation, it seems like you're asking about how to set up a fixed time zone when opening a mailbox for the first time and whether there are related commands.

    If that's the case, you could let your users set their own time zone in their Outlook Web App (OWA). When the user logs in OWA for the first time, the system will notify them to set their language and time zone. If they made a mistake in the configuration of the time zone, as Wilkin Sanchez suggested, we recommend using PowerShell to set the time zone for all user mailboxes in the Exchange environment. To do this, simply run the following command:

    Get-Mailbox -RecipientTypeDetails UserMailbox -ResultSize Unlimited | Set-MailboxRegionalConfiguration -TimeZone "<Your Desired Time Zone>"
    

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment". Note: Please follow the steps in [our documentation] to enable e-mail notifications if you want to receive the related email notification for this thread.

    1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. Wilkin Sanchez 186 Reputation points
    2024-01-14T01:15:10.8233333+00:00

    Hola, Puedes intentar el siguiente comando. Esto cambiara la zona horaria en todos los usuarios.

    Get-Mailbox -RecipientTypeDetails UserMailbox -ResultSize Unlimited | Set-MailboxRegionalConfiguration -TimeZone "<ZonaHoraria>"

    Para obtener una lista de zonas horarias validas, puedes usar el comando:

    $TimeZone = Get-ChildItem "HKLM:\Software\Microsoft\Windows NT\CurrentVersion\Time zones" | foreach {Get-ItemProperty $_.PSPath}; $TimeZone | sort Display | Format-Table -Auto PSChildname,Display

    Si la respuesta es útil, por favor haz clic en "Aceptar respuesta" o Sí y valórala positivamente. Si tienes más preguntas acerca de esta respuesta, por favor haz clic en "Comentar".


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.