Microsoft visual c++ 2010 service pack 1 redistributable package mfc security update

Microsoft Visual C++ Redistributable Packages

Hello.

There is something that is missing here. Microsoft Visual C++ 2003 runtime does not have a package of it's own like later versions. When one wants to run a program that needs msvcrt71.dll (and in my case I wanted to run PBL Peeper) none of these packages fits.
The solution for me in Windows Server 2012r2 was to install the 106.2 MB package refered in this comment:
https://stackoverflow.com/questions/1596167/where-to-download-microsoft-visual-c-2003-redistributable
This is in fact the full install package for .NET 1.1 SDK.
It would be nice if you added this package to your repository.

Have a nice day!
João Jerónimo

Visual C++ Redistibutable for Visual Studio 2017 can be downloaded from here, under the "Other Tools and Frameworks" menu

Visual C++ Redistributable for Visual Studio 2017 is also available

2008 and 2005 links dead.

where can i find vcredist c++ 2014?

where can i find vcredist c++ 2014?

Did you find it yet? I am also in need of it and unable to find it anywhere! Help!

Several links are broken and also redundant.

VS2015 is supersceded by the 2017/2019 package
VS2010 is replaced by 2010SP1
out of the VS2005 and 2008 packages and their SP1's only the VS2008 links work.

Yeah thanks fixed it already

😁👍

Hello.

There is something that is missing here. Microsoft Visual C++ 2003 runtime does not have a package of it's own like later versions. When one wants to run a program that needs msvcrt71.dll (and in my case I wanted to run PBL Peeper) none of these packages fits.
The solution for me in Windows Server 2012r2 was to install the 106.2 MB package refered in this comment:
https://stackoverflow.com/questions/1596167/where-to-download-microsoft-visual-c-2003-redistributable
This is in fact the full install package for .NET 1.1 SDK.
It would be nice if you added this package to your repository.

Have a nice day!
João Jerónimo

There apparently never was a VS 2003 redistributable package. Instead it was included in the Mictsoft .NET 1.1 Redistiributable, which I was just able to download from here: https://www.microsoft.com/en-ca/download/confirmation.aspx?id=26

Good luck!

@almaniac

There was never a full inclusion of VS2003 Runtimes in the .Net Package 1.1 redist, all it included was MSVCR71, it did not include MFC71, MSVCP71 or ATL71 dlls, these were only installed by Visual Studio.Net/2003

Manifests/VisualCRedistributablesSupported.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://support.microsoft.com/en-gb/help/2977003/the-latest-supported-visual-c-downloads -->
<Redistributables>
    <Platform Architecture="x64" Release="2008" Install="/Q" SilentInstall="/Q">
        <Redistributable>
            <Name>Visual C++ 2008 Service Pack 1 Redistributable Package MFC Security Update</Name>
            <ShortName>SP1MFC</ShortName>
            <URL>https://www.microsoft.com/en-us/download/details.aspx?id=26368</URL>
            <ProductCode>{5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4}</ProductCode>
            <Version>9.0.30729.5677</Version>
            <Download>https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe</Download>
        </Redistributable>
    </Platform>
    <Platform Architecture="x86" Release="2008" Install="/Q" SilentInstall="/Q">
        <Redistributable>
            <Name>Visual C++ 2008 Service Pack 1 Redistributable Package MFC Security Update</Name>
            <ShortName>SP1MFC</ShortName>
            <URL>https://www.microsoft.com/en-us/download/details.aspx?id=26368</URL>
            <ProductCode>{9BE518E6-ECC6-35A9-88E4-87755C07200F}</ProductCode>
            <Version>9.0.30729.5677</Version>
            <Download>https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe</Download>
        </Redistributable>
    </Platform>
    <Platform Architecture="x64" Release="2010" Install="/passive /norestart" SilentInstall="/quiet /norestart">
        <Redistributable>
            <Name>Visual C++ 2010 Service Pack 1 Redistributable Package MFC Security Update</Name>
            <ShortName>SP1</ShortName>
            <URL>https://www.microsoft.com/en-us/download/details.aspx?id=26999</URL>
            <ProductCode>{1D8E6291-B0D5-35EC-8441-6616F567A0F7}</ProductCode>
            <Version>10.0.40219.325</Version>
            <Download>https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe</Download>
        </Redistributable>
    </Platform>
    <Platform Architecture="x86" Release="2010" Install="/passive /norestart" SilentInstall="/quiet /norestart">
        <Redistributable>
            <Name>Visual C++ 2010 Service Pack 1 Redistributable Package MFC Security Update</Name>
            <ShortName>SP1</ShortName>
            <URL>https://www.microsoft.com/en-us/download/details.aspx?id=26999</URL>
            <ProductCode>{F0C3E5D1-1ADE-321E-8167-68EF0DE699A5}</ProductCode>
            <Version>10.0.40219.325</Version>
            <Download>https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe</Download>
        </Redistributable>
    </Platform>
    <Platform Architecture="x64" Release="2012" Install="/install /passive /norestart" SilentInstall="/quiet /norestart">
        <Redistributable>
            <Name>Visual C++ Redistributable for Visual Studio 2012 Update 4</Name>
            <ShortName>Update4</ShortName>
            <URL>https://www.microsoft.com/en-us/download/details.aspx?id=30679</URL>
            <ProductCode>{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}</ProductCode>
            <Version>11.0.61030.0</Version>
            <Download>https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe</Download>
        </Redistributable>
    </Platform>
    <Platform Architecture="x86" Release="2012" Install="/install /passive /norestart" SilentInstall="/install /quiet /norestart">
        <Redistributable>
            <Name>Visual C++ Redistributable for Visual Studio 2012 Update 4</Name>
            <ShortName>Update4</ShortName>
            <URL>https://www.microsoft.com/en-us/download/details.aspx?id=30679</URL>
            <ProductCode>{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}</ProductCode>
            <Version>11.0.61030.0</Version>
            <Download>https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe</Download>
        </Redistributable>
    </Platform>
    <Platform Architecture="x64" Release="2013" Install="/install /passive /norestart" SilentInstall="/install /quiet /norestart">
        <Redistributable>
            <Name>Visual C++ 2013 Update 5 Redistributable Package</Name>
            <ShortName>Update5</ShortName>
            <URL>https://support.microsoft.com/en-us/help/4032938/update-for-visual-c-2013-redistributable-package</URL>
            <ProductCode>{042d26ef-3dbe-4c25-95d3-4c1b11b235a7}</ProductCode>
            <Version>12.0.40664.0</Version>
            <Download>https://download.visualstudio.microsoft.com/download/pr/10912041/cee5d6bca2ddbcd039da727bf4acb48a/vcredist_x64.exe</Download>
        </Redistributable>
    </Platform>
    <Platform Architecture="x86" Release="2013" Install="/install /passive /norestart" SilentInstall="/install /quiet /norestart">
        <Redistributable>
            <Name>Visual C++ 2013 Update 5 Redistributable Package</Name>
            <ShortName>Update5</ShortName>
            <URL>https://support.microsoft.com/en-us/help/4032938/update-for-visual-c-2013-redistributable-package</URL>
            <ProductCode>{9dff3540-fc85-4ed5-ac84-9e3c7fd8bece}</ProductCode>
            <Version>12.0.40664.0</Version>
            <Download>https://download.visualstudio.microsoft.com/download/pr/10912113/5da66ddebb0ad32ebd4b922fd82e8e25/vcredist_x86.exe</Download>
        </Redistributable>
    </Platform>
    <Platform Architecture="x64" Release="2015" Install="/install /passive /norestart" SilentInstall="/install /quiet /norestart">
        <Redistributable>
            <Name>Visual C++ 2015 Redistributable Update 3</Name>
            <ShortName>Update3</ShortName>
            <URL>https://www.microsoft.com/en-us/download/details.aspx?id=53840</URL>
            <ProductCode>{d992c12e-cab2-426f-bde3-fb8c53950b0d}</ProductCode>
            <Version>14.0.24215.1</Version>
            <Download>https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe</Download>
        </Redistributable>
    </Platform>
    <Platform Architecture="x86" Release="2015" Install="/install /passive /norestart" SilentInstall="/install /quiet /norestart">
        <Redistributable>
            <Name>Visual C++ 2015 Redistributable Update 3</Name>
            <ShortName>Update3</ShortName>
            <URL>https://www.microsoft.com/en-us/download/details.aspx?id=53840</URL>
            <ProductCode>{e2803110-78b3-4664-a479-3611a381656a}</ProductCode>
            <Version>14.0.24215.1</Version>
            <Download>https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe</Download>
        </Redistributable>
    </Platform>
    <Platform Architecture="x64" Release="2017" Install="/install /passive /norestart" SilentInstall="/install /quiet /norestart">
        <Redistributable>
            <Name>Visual C++ Redistributable for Visual Studio 2017</Name>
            <ShortName>RTM</ShortName>
            <URL>https://www.visualstudio.com/downloads/</URL>
            <ProductCode>{5fb2083a-f3cc-4b78-93ff-bd9788b5de01}</ProductCode>
            <Version>14.16.27024.1</Version>
            <Download>https://aka.ms/vs/15/release/vc_redist.x64.exe</Download>
        </Redistributable>
    </Platform>
    <Platform Architecture="x86" Release="2017" Install="/install /passive /norestart" SilentInstall="/install /quiet /norestart">
        <Redistributable>
            <Name>Visual C++ Redistributable for Visual Studio 2017</Name>
            <ShortName>RTM</ShortName>
            <URL>https://www.visualstudio.com/downloads/</URL>
            <ProductCode>{2ff11a2a-f7ac-4a6c-8cd4-c7bb974f3642}</ProductCode>
            <Version>14.16.27024.1</Version>
            <Download>https://aka.ms/vs/15/release/vc_redist.x86.exe</Download>
        </Redistributable>
    </Platform>
</Redistributables>

What is Microsoft Visual C++ 2010 redistributable and do I need it?

Microsoft Visual C++ Redistributable is a set of runtime library files used by many programs installed in the PC, even a part of Windows. Uninstalling them will definitely stop all those programs that depend on them from working. In such event, you will need to install the required version again.

What is Microsoft Visual C 2010 redistributable?

It gives you the ability to download multiple files at one time and download large files quickly and reliably. It also allows you to suspend active downloads and resume downloads that have failed. Microsoft Download Manager is free and available for download now.

How do I install Microsoft Visual C++ 2010?

Installing Microsoft Visual C++ 2010 Redistributable Package.
Go to the Microsoft Visual C++ 2010 Redistributable Package download site for the corresponding system type (x64). ... .
Download the package to your local folder..
Double-click the package in Windows Explorer to display the User Account Control window..

How do I fix Microsoft Visual C++ redistributable packages?

Open Programs and Features. Start > Control Panel > Programs > Programs and Features. Search > Programs and Features..
Select Microsoft C++ Redistributable, right-click and click on Change..
On Microsoft C++ Redistributable Setup, click on Repair..
Click on Close once setup is successful..