Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Regsvr32 fails to find the dll in the current folder

When I use "regsvr32 foo.dll" i get a "The specified module cannot be found" error.

The error is being caused because regsvr32 cannot find the file even though it is the current folder.

I have specified the full path, and it still doen't work. Any ideas????

like image 900
cfischer Avatar asked Jul 29 '09 11:07

cfischer


2 Answers

This can happen if foo.dll has a depenency on bar.dll and it's actually bar.dll that can't be found.

Try using depends.exe from MSVC to check the dependencies of foo.dll and see if any are missing.

Another option is to download and run FileMon. Then run regsvr32 again and see which file/module it fails to find. This should definitely track it down.

like image 61
ars Avatar answered Sep 22 '22 02:09

ars


On the 64bit OSes, Dependency Walker has been uninformative for me; and FileMon has been replaced by Process Monitor (see https://docs.microsoft.com/en-us/sysinternals/downloads/procmon to download the utility). Here is how I was able to find the missing references using Process Monitor:

ProcMon Toolbar for the Filter Dialog

Open the Filter Dialog either from the toolbar or the menu.

ProcMon Filter Dialog

Add the Process Name of regsvr32.exe to the filter list and remove any PID filters.

ProcMon Clear Toolbar Button

Clear the list, ...

ProcMon Capture Toolbar Button

... turn on Capturing, if it is not already on.

Run your regsvr32.exe command from a console window. Once complete, you might want to toggle the capture off.

missing reference lines

Look for the missing reference after regsvr32 has loaded your DLL.

like image 26
ergohack Avatar answered Sep 25 '22 02:09

ergohack