26 lines
834 B
Batchfile
26 lines
834 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% 2> nul & CD /D %SAVEPATH%
|
|
|
|
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
|
|
set BASEURL="https://download.mozilla.org/?product=firefox-stub&os=win64&lang=de"
|
|
set PROG=FirefoxSetup.exe
|
|
|
|
:: --- Lade Installationsdatei herunter
|
|
curl -kLs %BASEURL% -o %SAVEPATH%\%PROG%
|
|
|
|
:: --- Silent-Installation des Programms:
|
|
(
|
|
echo [Install]
|
|
echo TaskbarShortcut=true
|
|
echo DesktopShortcut=true
|
|
echo StartMenuShortcuts=true
|
|
echo RegisterDefaultAgent=true
|
|
) > FirefoxInstaller_setup.ini
|
|
|
|
%PROG% /INI=FirefoxInstaller_setup.ini |