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

25
app/install_keepass.cmd Normal file
View File

@@ -0,0 +1,25 @@
:: ------------------------------------------------------------
:: 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%
:: --- Installiere C++ Redistibutable
set BASEURL=https://support.ostrachhelp.de/OstrachHELP/binaries/raw/branch/main/win
set PROG=VC_redist.x64.exe
curl -kL %BASEURL%/%PROG% -o %SAVEPATH%\%PROG% & %PROG% /Q
:: --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
set VERSION=2.7.9
set BASEURL=https://github.com/keepassxreboot/keepassxc/releases/download/%VERSION%
set PROG=KeePassXC-%VERSION%-Win64.msi
:: --- Lade Installationsdatei herunter
curl -kL %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
:: --- Silent-Installation des Programms:
%SYSTEMDRIVE%\windows\system32\msiexec /i "%PROG%" /passive /l %SAVEPATH%\%PROG%.log