Where to download Microsoft Visual c++ 2003 redistributable

163,851

Solution 1

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!

Solution 2

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.

Solution 3

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:

Share:
163,851
Joel
Author by

Joel

Developer Advocate for Embarcadero Technologies Invented and patented swipe to unlock in 2000. See US Patent # 8352745 & 6766456, and others. Host of the Podcast at Delphi.org. (mostly a blog with occasional episodes). Preferred Languages: Delphi / Object Pascal C++ JavaScript C# / .NET Java

Updated on July 19, 2022

Comments

  • Joel
    Joel almost 2 years

    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?

  • jackr
    jackr over 14 years
    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.
  • Joel
    Joel over 14 years
    I 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.
  • Alan Stokes
    Alan Stokes over 12 years
    msvcp71 is the C++ runtime (msvcr71 is the C runtime). Neither is a debug version.
  • BrainSlugs83
    BrainSlugs83 over 12 years
    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...
  • tutuDajuju
    tutuDajuju almost 11 years
    for 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
  • Bernhard
    Bernhard over 10 years
    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
  • feuGene
    feuGene about 10 years
    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.
  • Sven
    Sven over 6 years
    Thank you. I needed the .NET 1.1 SDK in order to get the missing MSVCR71.DLL and MSVCP71.DLL. Now everything works as expected.
  • zwcloud
    zwcloud over 6 years
    It seems those resources are unavailable.
  • Michael Rogers
    Michael Rogers about 5 years
    Download links no longer work, Microsoft says sorry after clicking download.
  • BrainSlugs83
    BrainSlugs83 almost 4 years
    Just tested the links today and they appear to be working for me.