17 lines
664 B
Batchfile
17 lines
664 B
Batchfile
rem ----------------------------------------------------------------
|
|
rem Installiere Microsoft Visual C++ 2015-2022 Redistributable (x64)
|
|
rem ----------------------------------------------------------------
|
|
|
|
rem --- Option: Download in ein temporäres Verzeichnis
|
|
rem --- Kann für z.B. für GLPI abgeschaltet werden
|
|
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
|
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
|
|
|
set BASEURL=https://support.ostrachhelp.de/OstrachHELP/binaries/raw/branch/main/win
|
|
set PROG=VC_redist.x64.exe
|
|
rem --- Lade Installationsdatei herunter
|
|
curl -kLO %BASEURL%/%PROG%
|
|
rem --- Silent-Installation des Programms:
|
|
rem %PROG% /Q
|
|
%PROG% /install /quiet /norestart
|