Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to the Power Users community on Codidact!

Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.

Comments on How can I get Windows 10 to stop displaying the wrong time on bootup?

Parent

How can I get Windows 10 to stop displaying the wrong time on bootup?

+4
−0

Whenever I boot up Windows on my laptop, the clock is set to UTC time. This happened no matter what timezone I was located in at the time. However, when I boot up Ubuntu on the same device, I got the correct time.

On Windows, the clock is set to automatically be set to the timezone I have selected. Half the time when I open the clock settings to fix the time it suddenly catches up; otherwise, I have to manually press the "sync now" button.

I'm running a dual-boot setup with Windows 10 and Ubuntu 22.04 on a Lenovo Legion 5.

Why does the clock display the wrong time every time I boot up Windows? How can I get Windows to display the correct time without manual intervention?

History
Why does this post require attention from curators or moderators?
You might want to add some details to your flag.
Why should this post be closed?

0 comment threads

Post
+2
−0

What's happening

The operating systems are using the hardware clock in different ways. Linux uses UTC while widows uses localtime (dubious I know). So when you boot the other OS, it's gonna see that the hardware clock is bonkers and update it. Evidently Linux manages to this behind the scenes while windows doesn't.

The fix

Configure windows to use UTC too by setting this registry value to 1:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation\RealTimeIsUniversal

More info in ArchWiki

History
Why does this post require attention from curators or moderators?
You might want to add some details to your flag.

2 comment threads

Link is dead (2 comments)
Why does Windows use local time? (1 comment)
Link is dead

Well, that's unfortunate.

Iizuki‭ wrote 9 days ago

Thanks, fixed it