repository setup
This commit is contained in:
24
app/install_obs.cmd
Normal file
24
app/install_obs.cmd
Normal file
@@ -0,0 +1,24 @@
|
||||
:: ------------------------------------------------------------
|
||||
:: 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 VERSION=30.2.3
|
||||
set BASEURL=https://github.com/obsproject/obs-studio/releases/download/%VERSION%
|
||||
set PROG=OBS-Studio-%VERSION%-Windows-Installer.exe
|
||||
|
||||
:: --- Lade Installationsdatei herunter
|
||||
curl -kL %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
|
||||
|
||||
:: --- Silent-Installation des Programms:
|
||||
%PROG% /S
|
||||
|
||||
:: --- 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
|
||||
Reference in New Issue
Block a user