I don't think that article explains it but it does give me a way to show a discrepancy. These disagree:
v:\> WMIC.exe Path Win32_LocalTime Get /Format:value
Day=5
DayOfWeek=4
Hour=11
Milliseconds=
Minute=29
Month=11
Quarter=4
Second=30
WeekInMonth=1
Year=2020
v:\> wmic path win32_operatingsystem get localdatetime
LocalDateTime
20201105122939.471000-240
That article mentions "InstallDate" but doesn't say where to find it.
I use this sort of query often: "Select CreationDate from Win32_Process where ProcessId=%PID". Without fail, those queries return a Daylight time, which is one hour off.
I have this, which looks correct.
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation
Bias REG_DWORD 0x12c
DaylightBias REG_DWORD 0xffffffc4
DaylightName REG_SZ @tzres.dll,-111
DaylightStart REG_BINARY 00000300020002000000000000000000
DynamicDaylightTimeDisabled REG_DWORD 0x0
StandardBias REG_DWORD 0x0
StandardName REG_SZ @tzres.dll,-112
StandardStart REG_BINARY 00000B00010002000000000000000000
TimeZoneKeyName REG_SZ Eastern Standard Time
ActiveTimeBias REG_DWORD 0x12c
I also had this problem (actually the opposite problem) in March when Daylight time began but restarting the computer fixed it.