某台电脑的主板电池貌似出问题了,系统时间每天都会变慢一点点,日积月累下来时间的误差就越来越大了,下方的bat脚本可以帮助校准系统时间。前提条件是电脑的网络是通畅的。
@echo off
%1 mshta vbscript:CreateObject("Shell.Application").ShellExecute("cmd.exe","/c %~s0 ::","","runas",1)(window.close)&&exit
net stop w32time
net start w32time
w32tm /resync
pause