I'm trying to figure out if the System.TimeZoneInfo is a local user or system wide setting? I've been modifying my local timezone as the user i'm logged in as, but a service running in the background as system that is logging the timezone seems to continually log the old time zone. If the TimeZoneInfo is per user, then is there a way I can lookup the list of timezones for all users?
|
|
||||
|
|
|
I assume you're really talking about (It seems odd to me that changing the system time zone doesn't appear to require privileged access - in Windows 7 at least - but hey...) |
|||
|
|
TimeZone is systemwide, it's not a userwide settings. But your problem is that .NET caches the current timezone to reset the cache:
|
|||
|
|
|
Timezones are a system setting. (HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation). |
|||
|
|