I have an old dll that uses the Microsoft Visual C++ 2003 (7.1) run time package. Unfortunately I don't have that DLL around anymore. Short of reinstalling VS2003, is there another way to get the run time redistributable dll?
-
reference: http://support.microsoft.com/kb/326922 – Amro May 10 '14 at 11:40
5 Answers
Storm's answer is not correct. No hard feelings Storm, and apologies to the OP as I'm a bit late to the party here (wish I could have helped sooner, but I didn't run into the problem until today, or this stack overflow answer until I was figuring out a solution.)
The Visual C++ 2003 runtime was not available as a seperate download because it was included with the .NET 1.1 runtime.
If you install the .NET 1.1 runtime you will get msvcr71.dll installed, and in addition added to C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322.
The .NET 1.1 runtime is available here: http://www.microsoft.com/downloads/en/details.aspx?familyid=262d25e3-f589-4842-8157-034d1e7cf3a3&displaylang=en (23.1 MB)
If you are looking for a file that ends with a "P" such as msvcp71.dll, this indicates that your file was compiled against a C++ runtime (as opposed to a C runtime), in some situations I noticed these files were only installed when I installed the full SDK. If you need one of these files, you may need to install the full .NET 1.1 SDK as well, which is available here: http://www.microsoft.com/downloads/en/details.aspx?FamilyID=9b3a2ca6-3647-4070-9f41-a333c6b9181d (106.2 MB)
After installing the SDK I now have both msvcr71.dll and msvcp71.dll in my System32 folder, and the application I'm trying to run (boomerang c++ decompiler) works fine without any missing DLL errors.
Also on a side note: be VERY aware of the difference between a Hotfix Update and a Regular Update. As noted in the linked KB932298 download (linked below by Storm): "Please be aware this Hotfix has not gone through full Microsoft product regression testing nor has it been tested in combination with other Hotfixes."
Hotfixes are NOT meant for general users, but rather users who are facing a very specific problem. As described in the article only install that Hotfix if you are have having specific daylight savings time issues with the rules that changed in 2007. -- Likely this was a pre-release for customers who "just couldn't wait" for the official update (probably for some business critical application) -- for regular users Windows Update should be all you need.
Thanks, and I hope this helps others who run into this issue!

- 1
- 1

- 6,214
- 7
- 50
- 56
-
1msvcp71 is the C++ runtime (msvcr71 is the C runtime). Neither is a debug version. – Alan Stokes Sep 15 '11 at 12:43
-
I stand corrected, I saw it needed the /MD flag and had assumed the D was for debug -- it's apparently for dynamic (as in, it needs a dll file, derp.) Good catch! Though, what's weird, is in my tests, when I installed the .NET 1.1 runtime I didn't get the C++ stuff, but when I installed the SDK I did... hmmm... – BrainSlugs83 Dec 01 '11 at 06:32
-
5for me, the 1.1 .NET framework installer placed the msvcr71.dll file only at ```C:\Windows\Microsoft.NET\Framework\v1.1.4322```, and did not alter path. I had to manually copy the file into ```C:\Windows\System32\``` directory for the file to be found – tutuDajuju Jul 04 '13 at 08:56
-
For whatever reason, having msvcr71.dll in C:\windows\system32 wasn't good enough for my application (Redland's rapper.exe), and I had to copy it into that application's folder. – feuGene Mar 10 '14 at 13:05
-
1Thank you. I needed the .NET 1.1 SDK in order to get the missing MSVCR71.DLL and MSVCP71.DLL. Now everything works as expected. – Sven Sep 26 '17 at 10:15
-
1Download links no longer work, Microsoft says sorry after clicking download. – Michael Rogers Mar 03 '19 at 21:39
-
1Just tested the links today and they appear to be working for me. – BrainSlugs83 Jul 31 '20 at 01:47
-
1
After a bit of googling, it seems that there never was a separate redistributable for Visual C++ 2003 (7.1). At least that is what a post on the microsoft forum says.
You may however be able to extract the runtime DLLs from the VC 7.1 DST timezone update.

- 766
- 5
- 14
-
2I wasn't able to extract the runtime DLLs from that update, but you are correct in that there doesn't seem to be a redistributable. Seems like a oversight to me. – Jim McKeeth Feb 03 '10 at 01:04
-
to extract the old .exe, open a commandbox and add "/xp:c:\temp\ex.msp" to the commandline of the .exe. this extracts the msp which you can open with 7-zip and extract the cab contents – Bernhard Jan 29 '14 at 10:01
the answer https://stackoverflow.com/a/6132093/1498669 is right.
There is also an update to both 2002 and 2003 runtimes just do an search on microsoft download
and you find the offical updates to the products
however, the latest patches seem to be:

- 2,541
- 1
- 26
- 24
Another way:
using Unofficial (Full Size: 26.1 MB) VC++ All in one that contained your needed files:
http://www.wincert.net/forum/topic/9790-aio-microsoft-visual-bcfj-redistributable-x86x64/
OR (Smallest 5.10 MB) Microsoft Visual Basic/C++ Runtimes 1.1.1 RePacked Here:
http://www.wincert.net/forum/topic/9794-bonus-microsoft-visual-basicc-runtimes-111/

- 1
- 2
I think this is what you're looking for: Microsoft Visual C++ 2008 Redistributable Package (x86)

- 885
- 7
- 6
-
The question was about VC 2003 (msvcr7.x). I think the nice redistributable packages available for newer versions, such as your link, are not now and have never been available for the older version in the question. – jackr Jan 21 '10 at 21:55