Questions tagged [dll-search-path]
7 questions
1
vote
0 answers
How are native NuGet dependencies from an application subfolder resolved?
This question might be better asked with an example, so looking at the Confluent.Kafka NuGet package:
This package contains native dependencies (via librdkafka.redist) which, when when the package is installed in a consuming project, end up in…

Adam Goodwin
- 3,951
- 5
- 28
- 33
1
vote
0 answers
How to use dlls from another folder in windows
We have some set of open source applications in common folder which shares the common libraries(dlls) from the same location. We are using windows 10 and 2012 server.
Recently we have updated the some of applications and that are not compatible with…

Venkatesh
- 171
- 1
- 1
- 10
1
vote
1 answer
DLL Loading rules
I want to know what search rules are used when LoadLibrary specifies absolute path for a known dll that is already loaded.
Some details on what I am doing:
- I am using a "known dll" for installation of a driver.
- I am redistributing this dll and…

Neetu
- 11
- 1
0
votes
0 answers
How to log NAME NOT FOUND CreateFile event with TraceEvent in C#
Since few days I have been looking for a method to detect, like process monitor, the CreateFile events in order to know the path of libraries that are not found by an executable.
After some research, I saw that it was mainly necessary to use a hook…

Doomed
- 33
- 4
0
votes
0 answers
Changing the way Delphi application searches system DLLs
If any dummy system DLL is placed in my application folder my application loads the dummy DLL and causes an error.
For example: create version.dll in application folder and run the application will display this error:
Testscapi: TESTSCAPI.exe - Bad…

Anto Raja Prakash
- 1,328
- 8
- 12
0
votes
1 answer
Python 2.7 64 bit search path
I am trying to load sqlite 64 bit while running Python 2.7 64 bit. I can do this interactively, but, not from a script.
Interactive:
$ /c/Python27-64/python
Python 2.7.12 (v2.7.12:d33e0cf91556, Jun 27 2016, 15:24:40) [MSC v.1500 64 bit (AMD64)] on…

Doo Dah
- 3,979
- 13
- 55
- 74
0
votes
1 answer
Is it possible to set fixed DLL search path in VisualStudio application?
I have a Qt/VisualStudio application which should start from a removable device without installation. I want to place in the root directory only the executable and all the required DLLs in in a directory "data".
The executable should load the DLLs…

Valentin H
- 7,240
- 12
- 61
- 111