好友
阅读权限10
听众
最后登录1970-1-1
|
25吾爱币
请教一下大家win7系统下的计划任务如何设置user用户组成员开机自动同步时间呢?
首先我先把这几天我制作ntp服务器和客户端的心得写一下,有需要的可以参考!
我做了一个ntp服务器 win7下ntp服务端开启需要下面两个注册表设置,还需要开启Windows的时间服务设置成自动
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\W32Time\Config]
"AnnounceFlags"=dword:00000005
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\W32Time\TimeProviders\NtpServer]
"Enabled"=dword:00000001
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\W32Time\Config]
"MaxNegPhaseCorrection"=dword:41ffffff
"MaxPosPhaseCorrection"=dword:41ffffff
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\W32Time\Config]
"AnnounceFlags"=dword:00000005
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\W32Time\TimeProviders\NtpServer]
"Enabled"=dword:00000001
开启服务如下:
sc config W32Time start= auto
net stop W32Time & net start W32Time
设置完毕客户端配置如下:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\W32Time\Parameters]
"NtpServer"="192.168.0.124,0x9"
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\W32Time\Config]
"MaxNegPhaseCorrection"=dword:41ffffff
"MaxPosPhaseCorrection"=dword:41ffffff
如果是administrator用户组下的用户,设置计划任务是可以成功的,但是USER用户组的成员估计是因为无法调用cmd命令导致w32tm /resync 命令无法被计划任务触发,从而无法执行自动同步时间的计划任务,请问大家如何解决这一问题!
|
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|