added script for logitech options

This commit is contained in:
Michael H.G. Schmidt 2022-05-29 20:45:22 +02:00
parent 58fc16bbb3
commit de7109cb91
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
@echo off
set EXE=..\software\logitechoptions-setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing logitech options ...
start /wait %EXE% /quiet /analytics:0 /flow:0 /sso:0 /updates:0
echo moving logibolt startmenu entry to logitech folder ...
move /Y %STARTMENU%\"Logi\Logi Bolt.lnk" %STARTMENU%\"Logitech"
echo removing logibolt startmenu folder ...
rd /S /Q %STARTMENU%\"Logi" 2>nul
echo ####### %0 #######
pause

View File

@ -29,3 +29,5 @@ https://download.oracle.com/java/17/latest/jdk-17_windows-x64_bin.exe java-setup
https://www.ausweisapp.bund.de/fileadmin/user_upload/Software/AusweisApp2-1.22.5.msi ausweisapp2-setup.msi https://www.ausweisapp.bund.de/fileadmin/user_upload/Software/AusweisApp2-1.22.5.msi ausweisapp2-setup.msi
https://updates.tdesktop.com/tx64/tsetup-x64.3.7.3.exe telegram-setup.exe https://updates.tdesktop.com/tx64/tsetup-x64.3.7.3.exe telegram-setup.exe
https://www.sharemouse.com/ShareMouseSetup.exe sharemouse-setup.exe https://www.sharemouse.com/ShareMouseSetup.exe sharemouse-setup.exe
https://download01.logi.com/web/ftp/pub/techsupport/options/options_installer.exe logitechoptions-setup.exe

1 https://repo1.maven.org/maven2/com/madgag/bfg/1.14.0/bfg-1.14.0.jar bfg.jar
29 https://www.ausweisapp.bund.de/fileadmin/user_upload/Software/AusweisApp2-1.22.5.msi ausweisapp2-setup.msi
30 https://updates.tdesktop.com/tx64/tsetup-x64.3.7.3.exe telegram-setup.exe
31 https://www.sharemouse.com/ShareMouseSetup.exe sharemouse-setup.exe
32 https://download01.logi.com/web/ftp/pub/techsupport/options/options_installer.exe logitechoptions-setup.exe
33