skip to Main Content
Skyté číslo Skrytý (Použijte stránku Kontakt) Datová schránka: szna64e IČO: 88246388 Číslo účtu: 670100-2201776955/6210

Up to date list of Microsoft Visual C++ redistributable packages with direct download and automatic installation with PowerShell script

I build this page like an easy to download mirror for all VC++ packages because even Microsoft doesn’t have a page like this one. Each section has a general name (the first one) and an official name of the package (the second one). All exe files were renamed for easy navigation and for automatic installation purpose. You can find the ZIP file with all packages Enjoy it.

This list is up to date, last update: 2019-05-13


Microsoft Visual C++ 2005 SP1 Redistributable Package

(Microsoft Visual C++ 2005 Service Pack 1 Redistributable Package MFC Security Update)

(x86) (32bit)

(x64) (64bit)


Microsoft Visual C++ 2008 SP1 Redistributable Package

(Microsoft Visual C++ 2008 Service Pack 1 Redistributable Package MFC Security Update)

(x86) (32bit)

(x64) (64bit)


Microsoft Visual C++ 2010 SP1 Redistributable Package

(Microsoft Visual C++ 2010 Service Pack 1 Redistributable Package MFC Security Update):

(x86) (32bit)

(x64) (64bit)


Microsoft Visual C++ 2012 Redistributable Package

(Visual C++ Redistributable for Visual Studio 2012 Update 4):

(x86) (32bit)

(x64) (64bit)


Microsoft Visual C++ 2013 Redistributable Package

(Visual C++ Redistributable Packages for Visual Studio 2013):

(x86) (32bit)

(x64) (64bit)


Microsoft Visual C++ 2015 Redistributable Package*

(Visual C++ Redistributable for Visual Studio 2015 Update 3)*:

(x86) (32bit)

(x64) (64bit)

* This package was replaced with the next package for Visual Studio 2017. They are both 14.x versions and VS 2017 is basically facelift and sets of updates for VS 2015.)


Microsoft Visual C++ 2017 Redistributable Package*

(Microsoft Visual C++ 2017 Redistributable Package 14.16.27027.1)*

(x86) (32bit)

(x64) (64bit)

*This package was replaced with next package. Visual Studio 2015-2019 share same redistributable packages.


Microsoft Visual C++ 2015-2019 Redistributable Package*

(Microsoft Visual C++ Redistributable Package 14.20.27508.1)*

(x86) (32bit)

(x64) (64bit)

*This package was replaced with next package. Visual Studio 2015-2019 share same redistributable packages.


All packages together in one ZIP file:

Link: Microsoft Visual C++ Redistributable Package x64 & x86 2005 2008 2010 2012 2013 2015 2017 2019


PowerShell script for automatic installation of packages:

(works only with local download files)

Link: Automatic_installation


PowerShell script for automatic installation of packages (chocolatey repository):

Chocolatey is the most popular nuget package based software servise for Windows. You don’t have to download files, you just install the repository and invoke the package instalation after that.

Link: Automatic_installation of Chocolatey repository via Command Line (see: [2]RUN IT LIKE AN ADMINISTATOR! 
Link: Automatic_installation of VC redistributable packages via Chocolatey repository and sophisticated installation script.


 

PowerShell code for Copy/Paste:

One-liner:

choco upgrade vcredist-all -y

Or step-by-step:

    choco install vcredist2005 -y
    choco install vcredist2008 -y
    choco install vcredist2010 -y
    choco install vcredist2012 -y
    choco install vcredist2013 -y
    choco install vcredist140  -y

References:

[1] https://support.microsoft.com/cs-cz/kb/2977003
[2] https://chocolatey.org/install

If some link is broken, please, let me know.

3 komentářů k zobrazení

Napsat komentář: Dustin Zrušit odpověď na komentář

Vaše e-mailová adresa nebude zveřejněna. Vyžadované informace jsou označeny *

Back To Top