views:

1344

answers:

1

Hi,

how do i install msvcr71.dll on windows server 2003, which is needed by my software. I really don't want to copy this dll to system32 folder, because it may break this target system.

+1  A: 

Just copy it into the folder where all the executables of your program will be. It's standard practice. Searching for libraries starts from the directory where the requesting executable is located, so unless LoadLibraryEx() with LOAD_WITH_ALTERED_SEARCH_PATH is used this will work allright.

sharptooth

related questions