repo size reduction
This commit is contained in:
24
essentiell/install_backuptools.cmd
Normal file
24
essentiell/install_backuptools.cmd
Normal file
@@ -0,0 +1,24 @@
|
||||
rem ----------------------------------------------------------------
|
||||
rem Installiere Disk2VHD und DoubleDriver
|
||||
rem ----------------------------------------------------------------
|
||||
|
||||
rem --- Option: Download in ein temporäres Verzeichnis
|
||||
rem --- Kann für z.B. für GLPI abgeschaltet werden
|
||||
set SAVEPATH=%SYSTEMDRIVE%\SETUP
|
||||
MKDIR %SAVEPATH% & CD /D %SAVEPATH%
|
||||
|
||||
set BASEURL=https://support.ostrachhelp.de/OstrachHELP/binaries/raw/branch/main/win
|
||||
set PROG=Disk2vhd.zip
|
||||
curl -kLO %BASEURL%/%PROG%
|
||||
powershell.exe "& {Expand-Archive %PROG% -Force -DestinationPath .}"
|
||||
del %PROG%
|
||||
|
||||
set BASEURL=https://support.ostrachhelp.de/OstrachHELP/binaries/raw/branch/main/win
|
||||
set PROG=Double%%20Driver.zip
|
||||
curl -kLO %BASEURL%/%PROG%
|
||||
powershell.exe "& {Expand-Archive %PROG% -Force -DestinationPath .}"
|
||||
del %PROG%
|
||||
|
||||
rem --- Sichere alle Treiber:
|
||||
cd /D "%SAVEPATH%\Double Driver"
|
||||
ddc b /target:%SAVEPATH%\Treiber
|
15
essentiell/install_dotnet-runtime-4.8-x64.cmd
Normal file
15
essentiell/install_dotnet-runtime-4.8-x64.cmd
Normal file
@@ -0,0 +1,15 @@
|
||||
rem ----------------------------------------------------------------
|
||||
rem Installiere Microsoft Visual C++ 2015-2022 Redistributable (x64)
|
||||
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%
|
||||
|
||||
set BASEURL=https://support.ostrachhelp.de/OstrachHELP/binaries/raw/branch/main/win
|
||||
set PROG=dotnet_4.8_runtime_offline_NDP48-x86-x64-AllOS-ENU.exe
|
||||
rem --- Lade Installationsdatei herunter
|
||||
curl -kLO %BASEURL%/%PROG%
|
||||
rem --- Silent-Installation des Programms:
|
||||
%PROG% /install /quiet /norestart
|
15
essentiell/install_dotnet-runtime-6.0.23-x64.cmd
Normal file
15
essentiell/install_dotnet-runtime-6.0.23-x64.cmd
Normal file
@@ -0,0 +1,15 @@
|
||||
rem ----------------------------------------------------------------
|
||||
rem Installiere Microsoft Visual C++ 2015-2022 Redistributable (x64)
|
||||
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%
|
||||
|
||||
set BASEURL=https://support.ostrachhelp.de/OstrachHELP/binaries/raw/branch/main/win
|
||||
set PROG=dotnet-runtime-6.0.23-win-x64.exe
|
||||
rem --- Lade Installationsdatei herunter
|
||||
curl -kLO %BASEURL%/%PROG%
|
||||
rem --- Silent-Installation des Programms:
|
||||
%PROG% /install /quiet /norestart
|
16
essentiell/install_vc_redist_runtime.cmd
Normal file
16
essentiell/install_vc_redist_runtime.cmd
Normal file
@@ -0,0 +1,16 @@
|
||||
rem ----------------------------------------------------------------
|
||||
rem Installiere Microsoft Visual C++ 2015-2022 Redistributable (x64)
|
||||
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%
|
||||
|
||||
set BASEURL=https://support.ostrachhelp.de/OstrachHELP/binaries/raw/branch/main/win
|
||||
set PROG=VC_redist.x64.exe
|
||||
rem --- Lade Installationsdatei herunter
|
||||
curl -kLO %BASEURL%/%PROG%
|
||||
rem --- Silent-Installation des Programms:
|
||||
rem %PROG% /Q
|
||||
%PROG% /install /quiet /norestart
|
15
essentiell/install_windowsdesktop-runtime-6.0.23-x64.cmd
Normal file
15
essentiell/install_windowsdesktop-runtime-6.0.23-x64.cmd
Normal file
@@ -0,0 +1,15 @@
|
||||
rem ----------------------------------------------------------------
|
||||
rem Installiere Microsoft Visual C++ 2015-2022 Redistributable (x64)
|
||||
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%
|
||||
|
||||
set BASEURL=https://support.ostrachhelp.de/OstrachHELP/binaries/raw/branch/main/win
|
||||
set PROG=windowsdesktop-runtime-6.0.23-win-x64.exe
|
||||
rem --- Lade Installationsdatei herunter
|
||||
curl -kL %BASEURL%/%PROG% -o %SAVEPATH%\%PROG%
|
||||
rem --- Silent-Installation des Programms:
|
||||
%PROG% /install /quiet /norestart
|
Reference in New Issue
Block a user