<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<style type="text/css" style="display:none;"> P {margin-top:0;margin-bottom:0;} </style>
</head>
<body dir="ltr">
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
AFAIK, tzdist isn't about setting the active time zone across computers.  It's about making sure those computers have reliable time zone data.</div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<span style="color: rgb(0, 0, 0); font-family: Calibri, Helvetica, sans-serif; font-size: 12pt;">In Windows, tzutil.exe can list the time zones available, and can set the active time zone.  T</span><span style="color: rgb(0, 0, 0); font-family: Calibri, Helvetica, sans-serif; font-size: 12pt;">here
 are also other ways to set the active time zone across computers.  For example, if they are in a domain you can use group policy to update registry settings.  You could also use Set-TimeZone in powershell. See:  </span><a href="https://dennisspan.com/configuring-the-time-zone-and-code-page-with-group-policy" style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt;">https://dennisspan.com/configuring-the-time-zone-and-code-page-with-group-policy</a></div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<span style="color: rgb(0, 0, 0); font-family: Calibri, Helvetica, sans-serif; font-size: 12pt;">In Windows, time zone data updates (including Microsoft and IANA time zone data) are handled through Windows Update.  On Linux, IANA data is typically pushed out
 via a "tzdata" package.  </span><span style="color: rgb(0, 0, 0); font-family: Calibri, Helvetica, sans-serif; font-size: 12pt;">The benefit of a tzdist-like system would simply be that time zone updates could be pushed out more rapidly than these other update
 processes typically take.  In other words, it is simply an out-of-band, purpose-built update process.  Such a process would be helpful when governments do not allow enough lead time for updates to get created and distributed, such as described in my blog post: </span><a href="https://codeofmatt.com/on-the-timing-of-time-zone-changes/" style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt;">https://codeofmatt.com/on-the-timing-of-time-zone-changes</a><br>
</div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
-Matt</div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div id="appendonsend"></div>
<hr style="display:inline-block;width:98%" tabindex="-1">
<div id="divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" style="font-size:11pt" color="#000000"><b>From:</b> tz <tz-bounces@iana.org> on behalf of Luigi Rosa <lists@luigirosa.com><br>
<b>Sent:</b> Thursday, July 18, 2019 6:27 AM<br>
<b>To:</b> tz@iana.org <tz@iana.org><br>
<b>Subject:</b> Re: [tz] [Tzdist-bis] [calsify] tzdist and IANA</font>
<div> </div>
</div>
<div class="BodyFragment"><font size="2"><span style="font-size:11pt;">
<div class="PlainText">Daniel Migault wrote on 18/07/2019 15:07:<br>
>      >> Wouldn't it be nice to have an infrastructure similar to what the NTP<br>
>      >> pool provides for time synchronization?<br>
<br>
My two cents of an admin of hosts (mainly Windows) that travel back and forth <br>
thru the seven seas (namely Cruise ships).<br>
<br>
Short version: TZ sync is a pain in the arse.<br>
<br>
Long version.<br>
You cannot use UTC for all the hosts because, for instance, some of them show <br>
information to the guests or are used to manage crew shifts (always expressed in <br>
ship time).<br>
<br>
On some ships the so called "master clock" has two NTP servers: one "classic" <br>
UTC and the other with ship time.<br>
<br>
We cannot use ship time NTP server because NTP clients (correctly) assume that <br>
NTP is about UTC, while the local time is just a "logical view" of NTP. If we <br>
sync Windows hosts with ship time the result is a mess (somebody said "Kerberos"?).<br>
<br>
We concocted a simple way to sync TZ between Windows hosts.<br>
<br>
The "TZ Server" runs the command<br>
<br>
tzutil /g > c:\tz\tz.txt<br>
<br>
C:\tz is shared as TZ<br>
<br>
Every client issue the commands<br>
<br>
set /p TZ=<<a href="file://"></a>\\TZSERVER\TZ\TZ.TXT<br>
tzutil /s "%TZ%"<br>
<br>
<br>
The procedure is tested on Win2016, 2012R2 and Win10<br>
<br>
<br>
Detailed info in my blog article:<br>
<a href="https://translate.google.com/translate?sl=it&tl=en&u=https%3A%2F%2Fsiamogeek.com%2F2019%2F06%2Fsincronizzare-la-time-zone%2F">https://translate.google.com/translate?sl=it&tl=en&u=https%3A%2F%2Fsiamogeek.com%2F2019%2F06%2Fsincronizzare-la-time-zone%2F</a><br>
<br>
The original is in Italian:<br>
<a href="https://siamogeek.com/2019/06/sincronizzare-la-time-zone/">https://siamogeek.com/2019/06/sincronizzare-la-time-zone/</a><br>
<br>
<br>
-- <br>
<br>
<br>
Ciao,<br>
luigi<br>
<br>
/<br>
+--[Luigi Rosa]--<br>
\<br>
</div>
</span></font></div>
</body>
</html>