Registering a DLL file on windows 2003 server

  • Thread starter Thread starter Khaled
  • Start date Start date
K

Khaled

I have Windows 2003 server and I am trying to register a
DLL file using the following command:
regsvr32 C:\WINDOWS\SYSTEM32\file_name.dll
but I keep receiving message saying that:
LoadLibrary("C:\WINDOWS\SYSTEM32\file_name.dll") failed -
The specified module could not be found.
and the file which I am trying to register is under
system32 directory.

Any Suggestions?

Thanks in Advance,
Khaled
(e-mail address removed)
 
Try calling regsvr32 from system32 directory.

C:\WINDOWS\SYSTEM32>regsvr32 file_name.dll

Also use dependency walker to see if this dll can work on your windows.
(some missing dll file)

And in future you should ask this kind of questions in windowsxp.general
news group this one is for Windows XP Embedded.

Regards,
Slobodan
 
Thank you for your help

I tried what you said it did not work
This file is working fine on windows XP professional

Where I can find the windowsxp.general news grou

Thank you agai
 
microsoft.public.windowsxp.general

Or if you created this file then some programming NG would be more
appropriate, since there might be something wrong with dll.

Regards,
Slobodan
 
Back
Top