| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 | @echo offCD /d %~dp0echo.echo Microsoft Visual C++ All-In-One Runtimes by W1zzard @ TechPowerUpecho https://www.techpowerup.com/download/visual-c-redistributable-runtime-package-all-in-one/echo.echo Installing runtime packages...set IS_X64=0 && if "%PROCESSOR_ARCHITECTURE%"=="AMD64" (set IS_X64=1) else (if "%PROCESSOR_ARCHITEW6432%"=="AMD64" (set IS_X64=1))if "%IS_X64%" == "1" goto X64echo 2005...start /wait vcredist2005_x86.exe /qecho 2008...start /wait vcredist2008_x86.exe /qbecho 2010...start /wait vcredist2010_x86.exe /passive /norestartecho 2012...start /wait vcredist2012_x86.exe /passive /norestartecho 2013...start /wait vcredist2013_x86.exe /passive /norestartecho 2015 - 2022...start /wait vcredist2015_2017_2019_2022_x86.exe /passive /norestartgoto END:X64echo 2005...start /wait vcredist2005_x86.exe /qstart /wait vcredist2005_x64.exe /qecho 2008...start /wait vcredist2008_x86.exe /qbstart /wait vcredist2008_x64.exe /qbecho 2010...start /wait vcredist2010_x86.exe /passive /norestartstart /wait vcredist2010_x64.exe /passive /norestartecho 2012...start /wait vcredist2012_x86.exe /passive /norestartstart /wait vcredist2012_x64.exe /passive /norestartecho 2013...start /wait vcredist2013_x86.exe /passive /norestartstart /wait vcredist2013_x64.exe /passive /norestartecho 2015 - 2022...start /wait vcredist2015_2017_2019_2022_x86.exe /passive /norestartstart /wait vcredist2015_2017_2019_2022_x64.exe /passive /norestartgoto END:ENDecho.echo Installation completed successfullyexit
 |