mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-21 18:59:22 +01:00
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:
parent
eb3261a040
commit
28b28c4c12
@ -12,7 +12,6 @@ Windows Registry Editor Version 5.00
|
||||
"EnableFirstLogonAnimation"=dword:00000000
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation]
|
||||
"RealTimeIsUniversal"=dword:00000000
|
||||
"RealTimeIsUniversal"=qword:00000000
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters]
|
||||
@ -24,4 +23,4 @@ Windows Registry Editor Version 5.00
|
||||
"Teredo_ServerName"="teredo.trex.fi"
|
||||
|
||||
[HKEY_USERS\.DEFAULT\Control Panel\Keyboard]
|
||||
"InitialKeyboardIndicators"="2147483650"
|
||||
"InitialKeyboardIndicators"="2147483650"
|
||||
|
@ -28,7 +28,7 @@ This file is supposed to explain [Windows.reg](Windows.reg).
|
||||
* Shows verbose information on login (starting service...)
|
||||
* Shows output of startup 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]
|
||||
@ -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!)
|
||||
* 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]
|
||||
@ -62,4 +63,4 @@ This file is supposed to explain [Windows.reg](Windows.reg).
|
||||
"InitialKeyboardIndicators"="2147483650"
|
||||
```
|
||||
|
||||
* Enable numlock on boot.
|
||||
* Enable numlock on boot.
|
||||
|
Loading…
Reference in New Issue
Block a user