vote up 0 vote down star
2

i need to deploy an application with a DLL in the application's directory for users on Windows 2000. The dll was shipped with Windows XP an later as a system dll.

Windows XP was also when Microsoft introduced the Fusion loader, to resolve assembly dependancies.

Is it possible to instruct to not use the version of the dll in my folder, but instead to always use the latest version of system supplied version of that dll? And Windows 2000 doesn't have the Fusion loader, nor the dll, so it will just use the version in my folder?

flag

56% accept rate
I think if you supply a dll in the application directory, it will be loaded instead of anything in the system. That's at least how the D3D debugger works. – OregonGhost Jun 11 at 14:18
Is this a .NET app? – Kev Jun 11 at 14:49
@OregonGhost: i want the opposite. i want it to not load the dll in the application directory if some system version is present. – Ian Boyd Jun 12 at 18:51
@Kev: Let's say no. Or, lets say yes, but i'm P/Invoking. – Ian Boyd Jun 12 at 18:51

2 Answers

vote up 0 vote down

On Windows 2000, if the DLL isn't in the app folder, it will walk down the standard DLL load path (i.e. similar to how $PATH works). What your app does on XP depends on whether you've got an App Manifest (i.e. whether you specify a version or not).

link|flag
Is what XP does depending on whether i've not an App Manifest, useful towards solving my problem? – Ian Boyd Jun 12 at 18:52
vote up 0 vote down

It is not possible on Windows. DLLs from the current directory are always loading first. I could only suggest you to modify your application in a way it loads the DLL dynamically then it will be possible to alter LoadLibrary path or to specify the exactly path to the DLL

link|flag

Your Answer

Get an OpenID
or

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