Hello all,
Last week I asked this forum how to register a DLL and got the answer:
________________
Assuming the dll was not part of a COM+ package, put your dll in the
directory you want (doesn't have to be part of the folder structure for the
website) and then open a DOS prompt and type:

regsvr32.exe c:\PathToTheDLL
________________

We are running Win2003 Server Web edition and when I do this I get the error
message:

LoadLibrary("c:\Windows\system32\filefunctions.dll") failed - The specified
module could not be found.

This is definitely where the file is. The DLL is necessary to support a
function in the ColdFusion based administrator tools for our web site. Any
ideas anyone??

There is one strange thing about this DLL and that is that it was written in
1997 and when I view the permissions on the file I cannot change them at
all. I copied it over from the server that is currently in use and I am
trying to get the new server ready to replace the old server.

Last important thing is that when I looked at the Properties panel just now
I saw the following comment:

COM object for providing filefunctions to ASP. So it appears that this
could be part of a COM+ package as indicated in the answer I received in the
forum.

I'm the ColdFusion guy - not a windows developer but I have not been able to
resolve this.

Thanks in advance, Jerry

Re: regsvr32 error says "file not found" on Win2003 Server by lallous

lallous
Sat Sep 27 04:45:36 CDT 2003

Hi Jerry,

You might get this error if some of the dlls needed by your DLL are missing.
Try using "Depends" tool to check what other DLLs are needed by this dll.

--
Elias
http://lgwm.org/

"Jerry" <gweir@simplicity.com> wrote in message
news:OXxvYgGhDHA.620@TK2MSFTNGP11.phx.gbl...
> Hello all,
> Last week I asked this forum how to register a DLL and got the answer:
> ________________
> Assuming the dll was not part of a COM+ package, put your dll in the
> directory you want (doesn't have to be part of the folder structure for
the
> website) and then open a DOS prompt and type:
>
> regsvr32.exe c:\PathToTheDLL
> ________________
>
> We are running Win2003 Server Web edition and when I do this I get the
error
> message:
>
> LoadLibrary("c:\Windows\system32\filefunctions.dll") failed - The
specified
> module could not be found.
>
> This is definitely where the file is. The DLL is necessary to support a
> function in the ColdFusion based administrator tools for our web site.
Any
> ideas anyone??
>
> There is one strange thing about this DLL and that is that it was written
in
> 1997 and when I view the permissions on the file I cannot change them at
> all. I copied it over from the server that is currently in use and I am
> trying to get the new server ready to replace the old server.
>
> Last important thing is that when I looked at the Properties panel just
now
> I saw the following comment:
>
> COM object for providing filefunctions to ASP. So it appears that this
> could be part of a COM+ package as indicated in the answer I received in
the
> forum.
>
> I'm the ColdFusion guy - not a windows developer but I have not been able
to
> resolve this.
>
> Thanks in advance, Jerry
>
>



Re: regsvr32 error says "file not found" on Win2003 Server by Tim

Tim
Sat Sep 27 22:00:21 CDT 2003

"Jerry" <gweir@simplicity.com> wrote:
>
>Last week I asked this forum how to register a DLL and got the answer:
>________________
>Assuming the dll was not part of a COM+ package, put your dll in the
>directory you want (doesn't have to be part of the folder structure for the
>website) and then open a DOS prompt and type:
>
>regsvr32.exe c:\PathToTheDLL
>________________

Yes, this is correct.

>We are running Win2003 Server Web edition and when I do this I get the error
>message:
>
>LoadLibrary("c:\Windows\system32\filefunctions.dll&