Integrate Visual C++ Redist package in basic Installation #96
This commit is contained in:
parent
4d39a344cd
commit
6c18df3201
@ -155,6 +155,9 @@ echo.
|
||||
call install-git.cmd
|
||||
echo.
|
||||
|
||||
call install-vcredist.cmd
|
||||
echo.
|
||||
|
||||
powershell -command .\install-windowsterminal.ps1
|
||||
echo.
|
||||
|
||||
|
21
scripts/install-vcredist.cmd
Normal file
21
scripts/install-vcredist.cmd
Normal 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 #######
|
||||
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user