14 lines
481 B
Batchfile
14 lines
481 B
Batchfile
:: ------------------------------------------------------------
|
|
:: Installer
|
|
:: ------------------------------------------------------------
|
|
|
|
:: --- Erstelle und betrete Downloadverzeichnis
|
|
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
|
|
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
|
|
|
:: --- Basis-URL des Git-Repository
|
|
set GITURL=https://support.ostrachhelp.de/OstrachHELP/setup_windows_2/raw/branch/main/
|
|
|
|
:: --- Optionen für curl
|
|
set CURLOPT=-kLO -A "Mozilla/5.0 (Windows NT 10.0; Win64; x64)"
|