Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install MSVCR90D.DLL

How do I install MSVCR90D.DLL? I have a small test DLL(debug mode) that I created a setup project. In my setup project, I included merge modules & policy for vc90_debugcrt_x86.msm, etc. When I install the DLL on my VM, dependency walker still reports that MSVCR90D.DLL cannot be found?

Thanks in advance.

like image 617
ramrocket Avatar asked Dec 08 '10 16:12

ramrocket


2 Answers

See here.

Preparing a Test Machine To Run a Debug Executable

Microsoft does not officially support deploying debug runtimes outside of dev/test environments but you can make it work if you need to. Sounds like this is a vanilla test environment installation, though.

like image 155
Steve Townsend Avatar answered Nov 11 '22 22:11

Steve Townsend


Just copy the MSVCR90D.DLL file into the same directory as your own dll. Then both your dll and dependency walker will find the MSVCR90D.DLL file.

You may need a couple of other files like msvcp90d.dll or msvcm90d.dll but dependency walker knows if you need them for your purposes.

like image 25
Jesper Bischoff-Jensen Avatar answered Nov 11 '22 21:11

Jesper Bischoff-Jensen