|
|
@echo off
chcp 65001 >nul
title 网络时间同步
:: ==========自动获取管理员权限==========
%1 mshta vbscript:CreateObject("Shell.Application").ShellExecute("cmd.exe","/c %~s0 ::","","runas",1)(window.close)&&exit
cd /d "%~dp0"
if "%~1"=="::" goto admin
:admin
:: ======================================
sc config w32time start= auto
w32tm /config /manualpeerlist:"ntp.aliyun.com" /syncfromflags:manual /reliable:yes /update
net stop w32time
net start w32time
w32tm /resync /rediscover
echo.
echo ==============================
echo ✅ 网络时间同步执行完毕
echo ==============================
w32tm /query /status
echo.
exit |
|