Since the change to daylight savings our sharepoint set alerts are being generated either an hour past the time it was orginially set or and hour prior. Through research I've discovered that there is a timezone.xml that lives in
c:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\Config
I am unsure of how I should modify that xml file.
Here is what my xml file looks like that has items set to true
<TimeZone ID="0" Name="(UTC) Universal Coordinated Time" Hidden="TRUE">
<Bias>0</Bias>
</TimeZone>
<TimeZone ID="1" Name="(GMT) Greenwich Mean Time" Hidden="TRUE">
<Bias>0</Bias>
<StandardTime>
<Bias>0</Bias>
<Date>
<Month>10</Month>
<Day>5</Day>
<Hour>2</Hour>
</Date>
</StandardTime>
<DaylightTime>
<Bias>-60</Bias>
<Date>
<Month>3</Month>
<Day>5</Day>
<Hour>1</Hour>
</Date>
</DaylightTime>
Can someone tell me how I modify this file to work with daylight savings and change back automatically in the fall when the clocks change back?