Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
3answers
40k views

Dependency Walker reports IESHIMS.DLL and WER.DLL missing?

On a Windows XP Professional SP3 with Internet Explorer 8 box, when I run Dependency Walker on an executable of mine it reports that: IESHIMS.DLL and WER.DLL can't be found. Do I need these DLL's? ...
14
votes
6answers
10k views

How do I determine the dependencies of a .NET application?

Does Dependency Walker work with managed apps? I've downloaded the latest and tried profiling the app, but it just exits without much of an explanation. If it doesn't work with .NET, then is there ...
7
votes
1answer
4k views

What is the equivalent of Linux's ldd on windows?

What is the equivalent of Linux's ldd on windows?
2
votes
1answer
256 views

Dependency Walker Not Showing All the Depended Dll

I have a fortran dll, and I want to know the assemblies that it depends on for redistribution purpose. One thing I found out is that the dependency walker doesn't show all of the dependencies, i.e, ...
2
votes
2answers
935 views

Dependency Walker on .NET applications: FlsAlloc

I have tried to profile several .NET executables in dependency walker and always get something like this: GetProcAddress(0x7C800000 [KERNEL32.DLL], "FlsAlloc") called from "MSCOREE.DLL" at address ...
1
vote
5answers
251 views

C# DLL Missing Public Functions

I am attempting to write a DLL using the C# .NET Framework 2.0. Everything compiles okay, but when I try to access the DLL from my application, it fails when attempting to get the procedure address. ...
1
vote
1answer
119 views

Dependency walker on cygwin app gives conflicting information?

I am using the dependency walker to figure out why my link of a cygwin ported application is not correct. It states that cgywin1.dll is missing the following symbols: AddAtomA FindAtomA GetAtomNameA ...
0
votes
0answers
24 views

Profiling x86 executable with Dependency Walker hangs on Windows 7 x64

Under Windows 7 x64, when I try to profile an x86 executable with the latest version of Dependency Walker (2.2.6000) the profiling process always hangs at a certain point. Most of the time the last ...
0
votes
2answers
39 views

Use Dependency Walker To Verify C Function in DLL

I'm new to dependency walker and I'm trying to determine if my dll contains a C function that I'm trying to call from Java via JNI. When I select the dll that should contain the C function in ...
0
votes
0answers
17 views

Restrict command-line Dependency Walker to first-level dependencies?

I am running Dependency Walker from command line as part of a batch file I am writing and would like to restrict my output to first-level dependencies only. Auto-expand (/a:0 or /a:1 from command ...
0
votes
0answers
104 views

Why Do I Need CONTROL Permission To Use SQL Server SMO DependencyWalker And See Dependency Of CLR Assembly?

We use a UDF in a .Net assembly for some Check Constraints in a SQL Server 2008 database (not R2). We've built a tool using the SMO .Net library, and one of the feature is using the DependencyWalker ...
0
votes
1answer
128 views

Using dependency Walker to find missing file

I have a dll that is working well on my computer but doesn't work on another computer. Apperently there is a missing dependency. I tried to use the dependency walker to find the missing file. It says: ...
0
votes
0answers
65 views

Dependancy Walker - How to capture return value from command line

I want to check for dll dependency from command line. I have gone through the help syntax but am not able to get it working depends /c /oc:"d:\tkresult.csv" /od:result.dwi "C:\Program Files\My ...
0
votes
1answer
230 views

LoadLibrary fails and dependency walker does not help

I was trying to use QOCI plugin for QtSql, until I had some problems: Why QOCI plugin isn't working However it turned out that it is a library loading issue (at least I think so), so I decided to ...
0
votes
3answers
159 views

Catching DLL dependencies in Win32 application

How can I catch a missing DLL in a dependent DLL? For example: Application is loading a DLL A. DLL A is loading DLL B. So if DLL B is not available, application just shows me: DLL A not found. Any ...