Windows to UTC

From ALT Linux Wiki
Revision as of 07:36, 20 July 2021 by Petr-akhlamov (talk | contribs) (Created page with "For Windows to think, what time in BIOS set up by Greenwich (UTC), need to write to his registry next settings: <source lang=text> Windows Registry Editor Version 5.00 [HKEY...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

For Windows to think, what time in BIOS set up by Greenwich (UTC), need to write to his registry next settings:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation]
"RealTimeIsUniversal"=dword:00000001

For 64-bit Windows file have next appearance:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation]
"RealTimeIsUniversal"=qword:00000001

Or

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation]
"RealTimeIsUniversal"=hex(b):01,00,00,00,00,00,00,00

You can create .reg-file with above content and run it.

Or run as administrator next command:

reg add "HKLM\SYSTEM\CurrentControlSet\Control\TimeZoneInformation" /v RealTimeIsUniversal /t REG_DWORD /d 1 — for 32-bit Windows,

reg add "HKLM\SYSTEM\CurrentControlSet\Control\TimeZoneInformation" /v RealTimeIsUniversal /t REG_QWORD /d 1 — for 64-bit Windows.