repository setup

This commit is contained in:
2025-08-26 09:48:25 +02:00
parent b50779b1d8
commit 077dbfc321
41 changed files with 1101 additions and 0 deletions

21
app/install_gimp.cmd Normal file
View File

@@ -0,0 +1,21 @@
:: ------------------------------------------------------------
:: 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%
set MAJ=3.0
set MIN=4
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
set BASEURL=https://download.gimp.org/gimp/v%MAJ%/windows
set PROG=gimp-%MAJ%.%MIN%%-setup.exe
:: --- Lade Installationsdatei herunter
curl -kL %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
:: --- Silent-Installation des Programms:
%PROG% /S /VERYSILENT /NORESTART /ALLUSERS