This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Rem run as administrator | |
@echo on & @setlocal enableextensions | |
@echo ========================= | |
@echo Turn off the time service | |
net stop w32time | |
@echo ====================================================================== | |
@echo Set the SNTP (Simple Network Time Protocol) source for the time server | |
w32tm /config /syncfromflags:manual /manualpeerlist:"0.it.pool.ntp.org 1.it.pool.ntp.org 2.it.pool.ntp.org 3.it.pool.ntp.org" | |
@echo ============================================= | |
@echo ... and then turn on the time service back on | |
net start w32time | |
@echo ============================================= | |
@echo Tell the time sync service to use the changes | |
w32tm /config /update | |
@echo ======================================================= | |
@echo Reset the local computer's time against the time server | |
w32tm /resync /rediscover | |
@endlocal & @goto :EOF |
Thanks
Thanks a lot!
To others: make sure you "run as admin".
@thedom85 Thanks!
Thanks.
👍
👍
Great script, thx!
Work on Win10
Thank you, now I can keep time!
can i make a scheduled task using this?
@ahmedmoselhi Yes, you can.
If you need to run this every time the computer boots, press the Windows key + R, type shell:startup
. Then you can create a shortcut. Enter the shortcut's Properties, click Advanced, and select Run as administrator.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!