通过bat文件设置Window时间同步

通过bat文件设置Window时间同步

在设置Window时间同步时﹐如果你不想写命令就用下的bat檔吧

bat文件内容如下:

@echo off
echo autor OAK
@echo off
echo --------------------------------
@echo off
echo setup time resync every one hour
@echo off
REG ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpClient /v SpecialPollInterval /t REG_DWORD /d 3600 /f
@echo off
echo --------------------------------
echo setup w32time auto startup
@echo off
REG ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time /v Start /t REG_DWORD /d 2 /f
@echo off
echo --------------------------------
@echo off
set /p TimeServer=Please Input The Time Server IP:
net time /setsntp:%TimeServer%

net stop w32time

net start w32time

w32tm /resync
   

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/7419833/viewspace-498384/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/7419833/viewspace-498384/

你可能感兴趣的:(通过bat文件设置Window时间同步)