Integrate 3rd Party Timesync tool #116

This commit is contained in:
Michael H.G. Schmidt 2023-07-30 10:42:03 +02:00
parent 5828ab9a42
commit 604feb77ef
6 changed files with 42 additions and 2 deletions

View File

@ -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.

View File

@ -16,6 +16,7 @@ for %%E in (
snapcontrol.exe
snapshot64.exe
Windows-ISO-Downloader.exe
tzedit.exe
) do (

View 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 #######

View File

@ -16,4 +16,5 @@ set localadmin=localadmin
set localadmin_name=Local Administrator
set localadmin_password=
set start_desktopinfo=1
use_nettime=1

Binary file not shown.

View File

@ -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

1 https://www.7-zip.org/a/7z1900-x64.msi 7z-setup.msi
3 https://go.microsoft.com/fwlink/?linkid=2120254 adk-setup.exe
4 https://download.sysinternals.com/files/SysinternalsSuite.zip sysinternals.zip
5 https://curl.se/windows/latest.cgi?p=win64-mingw.zip curl.zip
6 https://www.timesynctool.com/NetTimeSetup-314.exe nettime-setup.exe
7 https://www.timesynctool.com/tzedit.exe tzedit.exe
8 https://aka.ms/vs/17/release/vc_redist.x64.exe vcredist-setup.exe
9 https://aka.ms/vs/17/release/vc_redist.x86.exe vcredistx86-setup.exe
10 https://aka.ms/highdpimfc2013x64enu vcredist2013-setup.exe