From 6c18df320194d221650ab6117f384e8723dcd5f5 Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Sun, 29 Jan 2023 17:52:04 +0100 Subject: [PATCH] Integrate Visual C++ Redist package in basic Installation #96 --- scripts/autoconfig-all.cmd | 3 +++ scripts/install-vcredist.cmd | 21 +++++++++++++++++++++ software/basic.csv | 1 + 3 files changed, 25 insertions(+) create mode 100644 scripts/install-vcredist.cmd diff --git a/scripts/autoconfig-all.cmd b/scripts/autoconfig-all.cmd index 4c61b6b..f3ee17c 100644 --- a/scripts/autoconfig-all.cmd +++ b/scripts/autoconfig-all.cmd @@ -155,6 +155,9 @@ echo. call install-git.cmd echo. +call install-vcredist.cmd +echo. + powershell -command .\install-windowsterminal.ps1 echo. diff --git a/scripts/install-vcredist.cmd b/scripts/install-vcredist.cmd new file mode 100644 index 0000000..c18bedd --- /dev/null +++ b/scripts/install-vcredist.cmd @@ -0,0 +1,21 @@ +@echo off + +set SCRIPTS=..\scripts +set SOFTWARE=..\software +set EXE=vcredist-setup.exe + +if NOT EXIST %SOFTWARE%\%EXE% ( + echo ERROR: %SOFTWARE%\%EXE% not found! + exit /b +) + +echo ####### %0 ####### + +cd %SOFTWARE% +@echo on +%EXE% /install /passive /norestart +@echo off +cd %SCRIPTS% + +echo ####### %0 ####### + diff --git a/software/basic.csv b/software/basic.csv index f4d1799..84a9f2f 100644 --- a/software/basic.csv +++ b/software/basic.csv @@ -2,6 +2,7 @@ https://www.7-zip.org/a/7z1900-x64.msi 7z-setup.msi https://go.microsoft.com/fwlink/?linkid=2120254 adk-setup.exe https://download.sysinternals.com/files/SysinternalsSuite.zip sysinternals.zip https://curl.se/windows/latest.cgi?p=win64-mingw.zip curl.zip +https://aka.ms/vs/17/release/vc_redist.x64.exe vcredist-setup.exe https://netcologne.dl.sourceforge.net/project/gnuwin32/wget/1.11.4-1/wget-1.11.4-1-bin.zip wget.zip https://netcologne.dl.sourceforge.net/project/gnuwin32/wget/1.11.4-1/wget-1.11.4-1-dep.zip wgetdeps.zip https://github.com/git-for-windows/git/releases/download/v2.30.1.windows.1/Git-2.30.1-64-bit.exe git-setup.exe