25 lines
995 B
Batchfile
25 lines
995 B
Batchfile
|
:: ------------------------------------------------------------
|
||
|
:: Installationsroutine
|
||
|
:: ------------------------------------------------------------
|
||
|
|
||
|
:: --- Option: Download in ein temporäres Verzeichnis
|
||
|
:: --- Kann für z.B. für GLPI abgeschaltet werden
|
||
|
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
||
|
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||
|
|
||
|
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
|
||
|
set BASEURL=https://support.ostrachhelp.de/OstrachHELP/binaries/raw/branch/main/win
|
||
|
set PROG=RemoteDesktopConnectionManager.msi
|
||
|
|
||
|
:: --- Lade Installationsdatei herunter
|
||
|
curl -kL %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
|
||
|
|
||
|
:: --- Silent-Installation des Programms:
|
||
|
%SYSTEMDRIVE%\windows\system32\msiexec /i "%PROG%" /passive /l %SAVEPATH%\%PROG%.log
|
||
|
|
||
|
|
||
|
:: --- Installiere C++ Redistibutable
|
||
|
:: set BASEURL=https://support.ostrachhelp.de/OstrachHELP/setup_windows/raw/branch/main/essentiell
|
||
|
:: set PROG=VC_redist.x64.exe
|
||
|
:: curl -kL %BASEURL%/%PROG% -o %SAVEPATH%\%PROG% & %PROG% /Q
|