Need a patch to update timezones in windows 2012 R2 server matching with windows 11 timezones.

Doddapuneni, Krishna 1 Reputation point
2020-09-09T05:18:31.947+00:00

Hi All,

Need a help on finding right patch to install on windows server 2012 R2 or in all deployment web servers for getting below missing timezones list and those are all exist in windows 11.

  1. Magallanes Standard Time [(UTC-03:00) Punta Arenas]
  2. Omsk Standard Time [(UTC+06:00) Omsk]
  3. Qyzylorda Standard Time [(UTC+05:00) Qyzylorda]
  4. Sao Tome Standard Time [(UTC+00:00) Sao Tome]
  5. Saratov Standard Time [(UTC+04:00) Saratov]
  6. Sudan Standard Time [(UTC+02:00) Khartoum]
  7. UTC+13 [(UTC+13:00) Coordinated Universal Time+13]
  8. Volgograd Standard Time [(UTC+04:00) Volgograd]

Our .net application throwing error when user selecting above zones from the application UI, because those are not exist in app server.

  • Sample logic: Dim userTimeZoneName As String ="Magallanes Standard Time"
    Dim userTimeZone As TimeZoneInfo
    Try
    userTimeZone = TimeZoneInfo.FindSystemTimeZoneById(userTimeZoneName)
    Catch ex As System.TimeZoneNotFoundException
    ' Error finding time zone id
    userTimeZone = TimeZoneInfo.Utc
    End Try
Windows Server 2012
Windows Server 2012
A Microsoft server operating system that supports enterprise-level management, data storage, applications, and communications.
1,534 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Dave Patrick 426.1K Reputation points MVP
    2020-09-09T12:53:48.54+00:00
    0 comments No comments

  2. Teemo Tang 11,351 Reputation points
    2020-09-10T02:19:39.787+00:00

    Just keep your Windows Server 2012 R2 is up to date(or install the latest Monthly rollups), the daylight saving time (DST) patch will be installed automatically.
    The following Microsoft article give us detailed information:
    https://support.microsoft.com/en-us/help/914387/how-to-configure-daylight-saving-time-for-microsoft-windows-os
    Besides, there is not a Windows version called Windows 11, I think you want to say Windows 10…

    -------------------------------------------------------------------------------------

    If the Answer is helpful, please click "Accept Answer" and upvote it.
    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.

    0 comments No comments