Thank you for the detailed information. Hmm, based on what you have said, this points to a deeper failure in the timekeeping mechanism, likely related to either a service malfunction, hardware timer issue, or power state behavior.
First, let's confirm that the clock ticks at all after sync:
Sync the time via "Synchronize now".
Open Command Prompt and run:
time /t
Wait 10 seconds, then run time /t again.
If the time stays the same, Windows isn't ticking the system clock properly.
If it isn't, let's do a hard reset of your time service.
Open Command Prompt as Administrator and run:
regsvr32 w32time.dll
regsvr32 w32tm.exe
regsvr32 w32time.lib
Then, restart. then type below in command prompt admin again.
net stop w32time
net start w32time
Let's also check for corrupted system files.
First, open Command Prompt as an administrator by right-clicking the Start button and selecting "Command Prompt (Admin)." In the Command Prompt window, type sfc /scannow and press Enter. Wait for the scan to complete; this process might take some time, and the tool will automatically attempt to fix any detected issues. Once the scan is finished, restart your computer.
Next, open Command Prompt as an administrator again. In the Command Prompt window, type DISM /Online /Cleanup-Image /RestoreHealth and press Enter. Wait for the process to complete, as it might also take some time to repair the Windows image. Once the DISM process is complete, restart your computer.
Please let me know if this works for you. I'll do my best to respond as soon as possible.