Why not install Msvcr71.dll into system32?
        Posted  
        
            by 
                hillu
            
        on Server Fault
        
        See other posts from Server Fault
        
            or by hillu
        
        
        
        Published on 2010-12-30T16:37:01Z
        Indexed on 
            2010/12/30
            17:56 UTC
        
        
        Read the original article
        Hit count: 345
        
While looking for an authoritative source for the missing Msvcr71.dll that is needed by a few old applications, I stumbled across the MSDN article Redistribution of the shared C runtime component in Visual C++. The advice given to developers is to drop the DLL into the application's directory instead of system32 since DLLs in this directory are considered before the system paths.
What can/will go wrong if I (as an administrator, not a developer) decide to take the lazy path and install Msvcr71.dll (and Msvcp71.dll while I'm at it) into the system32 directory (of 32 bit Windows XP or Windows 7 systems) instead of putting a copy in each application's directory? Is there another good solution to provide the applications with the needed DLLs that doesn't involve copying stuff to the application directories?
© Server Fault or respective owner