How to store a time zone preference under Windows XP AND Vista - Stack Overflow most recent 30 from stackoverflow.com 2010-03-19T04:04:29Z http://stackoverflow.com/feeds/question/857209 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/857209/how-to-store-a-time-zone-preference-under-windows-xp-and-vista 1 How to store a time zone preference under Windows XP AND Vista Mark Pim http://stackoverflow.com/users/38883 2009-05-13T10:33:53Z 2009-05-29T14:16:47Z <p>Between Windows XP and Vista (and server 2003 and 2008) Microsoft have removed the <code>Index</code> key from <code>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Time Zones</code> and guess which value we store in our database to record an employee's time zone...</p> <p>(See <a href="http://support.microsoft.com/kb/935369" rel="nofollow">http://support.microsoft.com/kb/935369</a>).</p> <p>What is the best value to use instead? Microsoft seem to advocate using the name of the registry key for the time zone in question (like <code>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Time Zones\GMT Standard Time</code>) but that feels like magic constants to me.</p> <p>Is there a value that is guaranteed to be unique and fixed across Windows versions, cultures, translations and localisations?</p> http://stackoverflow.com/questions/857209/how-to-store-a-time-zone-preference-under-windows-xp-and-vista/926212#926212 1 Answer by Powerlord for How to store a time zone preference under Windows XP AND Vista Powerlord http://stackoverflow.com/users/15880 2009-05-29T14:16:47Z 2009-05-29T14:16:47Z <p>Unfortunately, it seems like those magic constants are the best way of identifying those time zones.</p> <p>In fact, this is exactly what .NET 3.5's <a href="http://msdn.microsoft.com/en-us/library/system.timezoneinfo.aspx" rel="nofollow">TimeZoneInfo</a> class <a href="http://blogs.msdn.com/bclteam/archive/2007/06/07/exploring-windows-time-zones-with-system-timezoneinfo-josh-free.aspx" rel="nofollow">uses</a> as its Id field.</p> <p>.NET's docs say that it "is a key string that uniquely identifies a particular time zone." implying that it is not localized.</p>