Time not syncing correctly #52
This commit is contained in:
parent
f8ecbab87f
commit
613098e61a
@ -99,6 +99,9 @@ if %install_aerolite% == 1 (
|
||||
call modify-taskbar.cmd
|
||||
echo.
|
||||
|
||||
call modify-timeservers.cmd
|
||||
echo.
|
||||
|
||||
echo #######################
|
||||
echo ### UNINSTALL tasks ###
|
||||
echo #######################
|
||||
|
40
scripts/modify-timeservers.cmd
Normal file
40
scripts/modify-timeservers.cmd
Normal file
@ -0,0 +1,40 @@
|
||||
@echo off
|
||||
|
||||
echo ####### %0 #######
|
||||
|
||||
echo adding PTB time servers ...
|
||||
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DateTime\Servers" ^
|
||||
/v "1" /t REG_SZ /d "ptbtime1.ptb.de" /f 1>nul
|
||||
|
||||
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DateTime\Servers" ^
|
||||
/v "2" /t REG_SZ /d "ptbtime2.ptb.de" /f 1>nul
|
||||
|
||||
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DateTime\Servers" ^
|
||||
/v "3" /t REG_SZ /d "ptbtime3.ptb.de" /f 1>nul
|
||||
|
||||
|
||||
echo adding EUROPE ntp pool servers ...
|
||||
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DateTime\Servers" ^
|
||||
/v "4" /t REG_SZ /d "0.europe.pool.ntp.org" /f 1>nul
|
||||
|
||||
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DateTime\Servers" ^
|
||||
/v "5" /t REG_SZ /d "1.europe.pool.ntp.org" /f 1>nul
|
||||
|
||||
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DateTime\Servers" ^
|
||||
/v "6" /t REG_SZ /d "2.europe.pool.ntp.org" /f 1>nul
|
||||
|
||||
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DateTime\Servers" ^
|
||||
/v "7" /t REG_SZ /d "3.europe.pool.ntp.org" /f 1>nul
|
||||
|
||||
|
||||
echo stopping time service ...
|
||||
sc stop W32Time 1:3:3 1>nul
|
||||
|
||||
echo setting time service to automatic start ...
|
||||
sc config W32Time start=auto
|
||||
|
||||
echo starting time service ...
|
||||
sc start W32Time
|
||||
|
||||
echo ####### %0 #######
|
||||
|
Loading…
Reference in New Issue
Block a user