vote up 1 vote down star

Is it supported by Microsoft to simply rewrite the manifest of an EXE or DLL to force the use of a specific version of the MSVC CRT?

I am interested in doing this because of recent problems with Visual Studio 2005/2008 security updates (KB971090 and KB971092). I would like to simply rewrite the manifest as a post build step in order to stop the problem of multiple versions of the CRT DLLs appearing there.

The two versions of the MSVC CRT DLL in question are v8.0.50727.4053 and v8.0.50727.762, so only minor version number changes.


This question has branched out from: http://stackoverflow.com/questions/1265792/visual-studio-2005-security-updates-and-crt-dll-versions-in-manifest

flag

67% accept rate

1 Answer

vote up 0 vote down check

this is a safe way and is automated so does not require any manual maintenance of manifest files

link|flag
How is forcing a program to use a DLL with known security flaws a safe thing? – blowdart Aug 15 at 11:34
read the Q&A of my workaround. Just because you target 762 versions of the DLLs doesn't mean that the 4053 versions don't get loaded. Read up on SxS policy redirection to understand this better. – Ted. Aug 16 at 23:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.