Windows.reg: add dword for RealTimeIsUniversal

This commit is contained in:
Aminda Suomalainen 2015-08-11 15:25:43 +03:00
parent 518a5c2a17
commit f93a3d5da3
2 changed files with 3 additions and 1 deletions

View File

@ -12,6 +12,7 @@ Windows Registry Editor Version 5.00
"EnableFirstLogonAnimation"=dword:00000000 "EnableFirstLogonAnimation"=dword:00000000
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation] [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation]
"RealTimeIsUniversal"=dword:00000000
"RealTimeIsUniversal"=qword:00000000 "RealTimeIsUniversal"=qword:00000000
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters] [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters]

View File

@ -32,11 +32,12 @@ This file is supposed to explain [Windows.reg](Windows.reg).
``` ```
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation] [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation]
"RealTimeIsUniversal"=dword:00000000
"RealTimeIsUniversal"=qword:00000000 "RealTimeIsUniversal"=qword:00000000
``` ```
* Sets hardware clock to UTC time (doesn't affect system clock!) * Sets hardware clock to UTC time (doesn't affect system clock!)
* Must be dword with 32-bit systems. * qword for 64-bit, dword for 32-bit systems. The latter might override earlier one.
``` ```
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters] [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters]