Integrate Visual C++ Redist package in basic Installation #96

This commit is contained in:
Michael H.G. Schmidt 2023-01-29 17:52:04 +01:00
parent 4d39a344cd
commit 6c18df3201
3 changed files with 25 additions and 0 deletions

View File

@ -155,6 +155,9 @@ echo.
call install-git.cmd
echo.
call install-vcredist.cmd
echo.
powershell -command .\install-windowsterminal.ps1
echo.

View File

@ -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 #######

View File

@ -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

1 https://www.7-zip.org/a/7z1900-x64.msi 7z-setup.msi
2 https://go.microsoft.com/fwlink/?linkid=2120254 adk-setup.exe
3 https://download.sysinternals.com/files/SysinternalsSuite.zip sysinternals.zip
4 https://curl.se/windows/latest.cgi?p=win64-mingw.zip curl.zip
5 https://aka.ms/vs/17/release/vc_redist.x64.exe vcredist-setup.exe
6 https://netcologne.dl.sourceforge.net/project/gnuwin32/wget/1.11.4-1/wget-1.11.4-1-bin.zip wget.zip
7 https://netcologne.dl.sourceforge.net/project/gnuwin32/wget/1.11.4-1/wget-1.11.4-1-dep.zip wgetdeps.zip
8 https://github.com/git-for-windows/git/releases/download/v2.30.1.windows.1/Git-2.30.1-64-bit.exe git-setup.exe