It seems that your Acer A315-24PT laptop is having issues synchronizing time, as indicated by the output of the w32tm /query /status command showing that it is not synchronized and referencing the local CMOS clock. Here are some steps you can try to resolve this issue:
- Check Windows Time Service: Ensure that the Windows Time service is running. You can do this by executing the following commands in an elevated Command Prompt:
net start w32time - Force Resynchronization: You can force the time service to resynchronize by running the following commands:
w32tm /resync /force - Clear W32Time Registry Values: If the above steps do not work, you may need to clear the W32Time registry values. Run the following commands:
net stop w32time w32tm.exe /unregister w32tm.exe /register net start w32time w32tm.exe /resync /force - Check NTP Configuration: Ensure that your NTP settings are correct. You can check the current configuration by running:
Make sure that the NTP server is set correctly.w32tm /query /configuration - Reconnect to the Internet: Sometimes, simply reconnecting to the internet can resolve synchronization issues, especially if the computer needs to access external time servers.
- Disable Secure Time Seeding: If none of the above methods work, you can try disabling Secure Time Seeding as a last resort. Run the following command:
Then restart your computer and run the resync command again.reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config /v UtilizeSslTimeData /t REG_DWORD /d 0 /f
After trying these steps, check the synchronization status again using w32tm /query /status. If the problem persists, there may be a deeper issue with your system settings or hardware that may require further investigation.
References: