Windows 8 是否支持 UTC 作为 BIOS 时间?

Ror*_*ren 45 bios utc windows-8

有什么办法可以在 BIOS 中以 UTC 时间使用 Windows 8?我知道在 Windows 7 中有一种方法可以做到这一点(在这个问题中:Windows 7 是否支持 UTC 作为 BIOS 时间?),但是这个解决方案使我的系统无法启动。

默认情况下,Windows 期望将 bios 时钟设置为本地时间。在 Windows 7 及之前,有一个注册表黑客来改变这种行为,以便它可以期待 UTC——在 Windows 8 中是否有等价物?

Elm*_*lmo 45

是的。只需按照以下步骤操作:

  1. 打开regedit

  2. 导航到以下键: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation

  3. 右键单击白色区域并选择 New --> DWORD (32-bit Value)

  4. 命名密钥RealTimeIsUniversal

  5. 双击它并将其值设置为 1。


A T*_*A T 16

@Zuck 的回答很好,但通过命令行界面(CLI)更快。

cmd以管理员身份打开,然后运行:

reg ADD HKLM\System\CurrentControlSet\Control\TimeZoneInformation /t REG_DWORD /v RealTimeIsUniversal /d 1
Run Code Online (Sandbox Code Playgroud)