Create Telegram install-script. #32

This commit is contained in:
Michael H.G. Schmidt 2022-05-16 08:14:21 +02:00
parent d256eebc3c
commit b6421a5bab
5 changed files with 37 additions and 2 deletions

View File

@ -2,7 +2,7 @@
set OPT=..\optional set OPT=..\optional
set SOFTWARE=..\software set SOFTWARE=..\software
set MSI=ausweisapp2.msi set MSI=ausweisapp2-setup.msi
if NOT EXIST %SOFTWARE%\%MSI% ( if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found! echo ERROR: %SOFTWARE%\%MSI% not found!
@ -11,6 +11,7 @@ if NOT EXIST %SOFTWARE%\%MSI% (
echo ####### %0 ####### echo ####### %0 #######
echo installing Ausweisapp 2 ...
cd %SOFTWARE% cd %SOFTWARE%
@echo on @echo on
msiexec /i %MSI% /quiet msiexec /i %MSI% /quiet

View File

@ -12,6 +12,7 @@ if NOT EXIST %SOFTWARE%\%MSI% (
echo ####### %0 ####### echo ####### %0 #######
echo installing DB-Browser ...
cd %SOFTWARE% cd %SOFTWARE%
@echo on @echo on
msiexec /i %MSI% /passive msiexec /i %MSI% /passive

View File

@ -12,6 +12,7 @@ if NOT EXIST %SOFTWARE%\%MSI% (
echo ####### %0 ####### echo ####### %0 #######
echo installing em-Client ...
cd %SOFTWARE% cd %SOFTWARE%
@echo on @echo on
msiexec /i %MSI% /quiet msiexec /i %MSI% /quiet

View File

@ -0,0 +1,31 @@
@echo off
set EXE=..\software\telegram-setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
set STARTMENU_USER="%APPDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing Telegram Desktop Client ...
start /wait %EXE% /silent /norestart %EXE%
echo moving Telegram startmenu shortcut ...
move /Y %STARTMENU_USER%\"Telegram Desktop\Telegram.lnk" %STARTMENU%
echo removing Telegram startmenu folder ...
rd /S /Q %STARTMENU_USER%\"Telegram Desktop" 2>nul
echo moving Telegram Desktop icon ...
move /Y "%USERPROFILE%\Desktop\Telegram.lnk" %PUBLIC%\Desktop
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause

View File

@ -26,4 +26,5 @@ https://swupdate.openvpn.net/as/clients/openvpn-connect-2.7.1.111_signed.msi ope
https://cdn-fastly.obsproject.com/downloads/OBS-Studio-27.0.1-Full-Installer-x64.exe obsstudio-setup.exe https://cdn-fastly.obsproject.com/downloads/OBS-Studio-27.0.1-Full-Installer-x64.exe obsstudio-setup.exe
https://github.com/mhgschmidt/snapcontrol/releases/download/V1.07/snapcontrol.zip snapcontrol.zip https://github.com/mhgschmidt/snapcontrol/releases/download/V1.07/snapcontrol.zip snapcontrol.zip
https://download.oracle.com/java/17/latest/jdk-17_windows-x64_bin.exe java-setup.exe https://download.oracle.com/java/17/latest/jdk-17_windows-x64_bin.exe java-setup.exe
https://www.ausweisapp.bund.de/fileadmin/user_upload/Software/AusweisApp2-1.22.5.msi ausweisapp2.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

1 https://repo1.maven.org/maven2/com/madgag/bfg/1.14.0/bfg-1.14.0.jar bfg.jar
26 https://cdn-fastly.obsproject.com/downloads/OBS-Studio-27.0.1-Full-Installer-x64.exe obsstudio-setup.exe
27 https://github.com/mhgschmidt/snapcontrol/releases/download/V1.07/snapcontrol.zip snapcontrol.zip
28 https://download.oracle.com/java/17/latest/jdk-17_windows-x64_bin.exe java-setup.exe
29 https://www.ausweisapp.bund.de/fileadmin/user_upload/Software/AusweisApp2-1.22.5.msi ausweisapp2.msi 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