repo size reduction

This commit is contained in:
2024-11-22 13:08:57 +01:00
parent ae09ff9e32
commit f5b63a3e85
73 changed files with 2561 additions and 2 deletions

View File

@@ -0,0 +1,46 @@
rem ------------------------------------------------------------
rem Installationsroutine
rem ------------------------------------------------------------
rem --- Option: Download in ein temporäres Verzeichnis
rem --- Kann für z.B. für GLPI abgeschaltet werden
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
rem --- Download Basis-URL, Dateiname und TEMP-Verzeichnis
set BASEURL=https://github.com/git-for-windows/git/releases/download/v2.43.0.windows.1
set PROG=Git-2.43.0-64-bit.exe
rem --- Lade Installationsdatei herunter
curl -k -L %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
rem --- Erzeuge INI-Datei
(
echo [Setup]
echo Lang=default
echo Dir=C:\Program Files\Git
echo Group=Git
echo NoIcons=0
echo SetupType=default
echo Components=gitlfs,assoc,assoc_sh,scalar
echo Tasks=
echo EditorOption=Notepad++
echo CustomEditorPath=
echo DefaultBranchOption=
echo PathOption=Cmd
echo SSHOption=OpenSSH
echo TortoiseOption=false
echo CURLOption=OpenSSL
echo CRLFOption=CRLFAlways
echo BashTerminalOption=MinTTY
echo GitPullBehaviorOption=Merge
echo UseCredentialManager=Enabled
echo PerformanceTweaksFSCache=Enabled
echo EnableSymlinks=Disabled
echo EnablePseudoConsoleSupport=Disabled
echo EnableFSMonitor=Disabled
) > git.ini
rem --- Silent-Installation des Programms:
%PROG% /VERYSILENT /NORESTART /NOCANCEL /SP- /CLOSEAPPLICATIONS /RESTARTAPPLICATIONS /LOADINF=git.ini

View File

@@ -0,0 +1,16 @@
rem ------------------------------------------------------------
rem Installationsroutine
rem ------------------------------------------------------------
rem --- Option: Download in ein temporäres Verzeichnis
rem --- Kann für z.B. für GLPI abgeschaltet werden
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
rem --- TortoiseGIT
set BASEURL=https://github.com/sandboxie-plus/Sandboxie/releases/download/v1.12.3
set PROG=Sandboxie-Plus-x64-v1.12.3.exe
rem --- Lade Installationsdatei herunter
curl -k -L %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
%PROG% /SP- /NORESTART /lang=de /ALLUSERS /SILENT /VERYSILENT /SUPPRESSMSGBOXES

View File

@@ -0,0 +1,25 @@
rem ------------------------------------------------------------
rem Installationsroutine
rem ------------------------------------------------------------
rem --- Option: Download in ein temporäres Verzeichnis
rem --- Kann für z.B. für GLPI abgeschaltet werden
set SAVEPATH=%SYSTEMDRIVE%\TEMP\install
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
rem --- TortoiseGIT
set BASEURL=https://download.tortoisegit.org/tgit/2.15.0.0
set PROG=TortoiseGit-2.15.0.0-64bit.msi
rem --- Lade Installationsdatei herunter
curl -k -L %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
%SYSTEMDRIVE%\windows\system32\msiexec /i "%PROG%" /passive /l %SAVEPATH%\%PROG%.log
rem --- Sprachpaket Deutsch
set BASEURL=https://download.tortoisegit.org/tgit/2.15.0.0
set PROG=TortoiseGit-LanguagePack-2.15.0.0-64bit-de.msi
rem --- Lade Installationsdatei herunter
curl -k -L %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
%SYSTEMDRIVE%\windows\system32\msiexec /i "%PROG%" /passive /l %SAVEPATH%\%PROG%.log