Integrate 3rd Party Timesync tool #116
This commit is contained in:
parent
5828ab9a42
commit
604feb77ef
@ -34,6 +34,7 @@ set searchdomains=localdomain,fritz.box
|
||||
set gitserver=github.com
|
||||
set gitrepo=my_repo_at_github
|
||||
set start_desktopinfo=0
|
||||
set use_nettime=0
|
||||
|
||||
echo ####### %0 #######
|
||||
date /t
|
||||
@ -159,8 +160,13 @@ echo.
|
||||
call modify-taskbar.cmd
|
||||
echo.
|
||||
|
||||
call modify-timeservers.cmd
|
||||
echo.
|
||||
if %use_nettime% == 1 (
|
||||
call install-nettime.cmd
|
||||
echo.
|
||||
) else (
|
||||
call modify-timeservers.cmd
|
||||
echo.
|
||||
)
|
||||
|
||||
call modify-searchdomains.cmd
|
||||
echo.
|
||||
|
@ -16,6 +16,7 @@ for %%E in (
|
||||
snapcontrol.exe
|
||||
snapshot64.exe
|
||||
Windows-ISO-Downloader.exe
|
||||
tzedit.exe
|
||||
|
||||
) do (
|
||||
|
||||
|
30
scripts/install-nettime.cmd
Normal file
30
scripts/install-nettime.cmd
Normal file
@ -0,0 +1,30 @@
|
||||
@echo off
|
||||
|
||||
set EXE=..\software\nettime-setup.exe
|
||||
|
||||
echo ####### %0 #######
|
||||
|
||||
echo stopping systems time service ...
|
||||
sc stop W32Time 1:3:3 1>nul
|
||||
|
||||
echo disabling systems time service ...
|
||||
sc config W32Time start=disabled
|
||||
|
||||
echo installing NetTime ...
|
||||
start /wait %EXE% /SILENT
|
||||
|
||||
echo disabling autoupdate ...
|
||||
reg add "HKLM\Software\Wow6432Node\Subjective Software\NetTime" ^
|
||||
/v "AutomaticUpdateChecks" /t REG_DWORD /d "0" /f >nul
|
||||
|
||||
echo moving NetTime startmenu shortcut ...
|
||||
move /Y %STARTMENU%\"NetTime\NetTime.lnk" %STARTMENU%\Tools\NetTime.lnk
|
||||
|
||||
echo removing NetTime startmenu folder ...
|
||||
rd /S /Q %STARTMENU%\"NetTime" 2>nul
|
||||
|
||||
rem refresh desktop (W10 style)
|
||||
ie4uinit.exe -show
|
||||
|
||||
echo ####### %0 #######
|
||||
|
@ -16,4 +16,5 @@ set localadmin=localadmin
|
||||
set localadmin_name=Local Administrator
|
||||
set localadmin_password=
|
||||
set start_desktopinfo=1
|
||||
use_nettime=1
|
||||
|
||||
|
BIN
scripts/startmenu/TZedit.lnk
Normal file
BIN
scripts/startmenu/TZedit.lnk
Normal file
Binary file not shown.
@ -3,6 +3,8 @@ https://www.sumatrapdfreader.org/dl/rel/3.4.6/SumatraPDF-3.4.6-64.zip sumatrapdf
|
||||
https://go.microsoft.com/fwlink/?linkid=2120254 adk-setup.exe
|
||||
https://download.sysinternals.com/files/SysinternalsSuite.zip sysinternals.zip
|
||||
https://curl.se/windows/latest.cgi?p=win64-mingw.zip curl.zip
|
||||
https://www.timesynctool.com/NetTimeSetup-314.exe nettime-setup.exe
|
||||
https://www.timesynctool.com/tzedit.exe tzedit.exe
|
||||
https://aka.ms/vs/17/release/vc_redist.x64.exe vcredist-setup.exe
|
||||
https://aka.ms/vs/17/release/vc_redist.x86.exe vcredistx86-setup.exe
|
||||
https://aka.ms/highdpimfc2013x64enu vcredist2013-setup.exe
|
||||
|
|
Loading…
Reference in New Issue
Block a user