Windows.reg: hwclock in UTC (qword-only)

dword is used for 32-bit Windowses which I haven't luckily seen
recently.
This commit is contained in:
Aminda Suomalainen 2016-03-02 10:49:39 +02:00
parent eb3261a040
commit 28b28c4c12
2 changed files with 5 additions and 5 deletions

View File

@ -12,7 +12,6 @@ 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]
@ -24,4 +23,4 @@ Windows Registry Editor Version 5.00
"Teredo_ServerName"="teredo.trex.fi" "Teredo_ServerName"="teredo.trex.fi"
[HKEY_USERS\.DEFAULT\Control Panel\Keyboard] [HKEY_USERS\.DEFAULT\Control Panel\Keyboard]
"InitialKeyboardIndicators"="2147483650" "InitialKeyboardIndicators"="2147483650"

View File

@ -28,7 +28,7 @@ This file is supposed to explain [Windows.reg](Windows.reg).
* Shows verbose information on login (starting service...) * Shows verbose information on login (starting service...)
* Shows output of startup scripts * Shows output of startup scripts
* Shows output of shutdown scripts * Shows output of shutdown scripts
* Disables the first logon animation on Windows 8\* * Disables the first logon animation on Windows 8 and newer
``` ```
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation] [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation]
@ -37,7 +37,8 @@ This file is supposed to explain [Windows.reg](Windows.reg).
``` ```
* Sets hardware clock to UTC time (doesn't affect system clock!) * Sets hardware clock to UTC time (doesn't affect system clock!)
* qword for 64-bit, dword for 32-bit systems. The latter might override earlier one. * qword for 64-bit, dword for 32-bit systems. The actual reg file has
only qword as I haven't seen 32-bit Windowses lately.
``` ```
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters] [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters]
@ -62,4 +63,4 @@ This file is supposed to explain [Windows.reg](Windows.reg).
"InitialKeyboardIndicators"="2147483650" "InitialKeyboardIndicators"="2147483650"
``` ```
* Enable numlock on boot. * Enable numlock on boot.