views:

413

answers:

1

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

A: 

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

Ted.
How is forcing a program to use a DLL with known security flaws a safe thing?
blowdart
Ted.