diff --git a/Windows/Windows.reg b/Windows/Windows.reg index d806c9f6..d7410c79 100644 --- a/Windows/Windows.reg +++ b/Windows/Windows.reg @@ -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" \ No newline at end of file +"InitialKeyboardIndicators"="2147483650" diff --git a/Windows/Windows.reg.markdown b/Windows/Windows.reg.markdown index de851c6c..4371ad2f 100644 --- a/Windows/Windows.reg.markdown +++ b/Windows/Windows.reg.markdown @@ -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. \ No newline at end of file +* Enable numlock on boot.