DLL

M

Martin Racette

How can I find to what process a certain DLL belong, there is one DLL in the
TEMP directory, I can not delete it because it is in use but I do not know
what prcess is using it
 
C

Chirag

The following command will tell you the processes that have a particular DLL
loaded:

tasklist /fi "modules eq apphelp.dll"

Replace apphelp.dll with the DLL name in your TEMP folder to find out the
applications that are using the DLL.

- Chirag

PowerShow - View multiple PowerPoint slide shows simultaneously
http://officeone.mvps.org/powershow/powershow.html
 
K

Ken Blake, MVP

How can I find to what process a certain DLL belong, there is one DLL in the
TEMP directory, I can not delete it because it is in use but I do not know
what prcess is using it


What's the name of this DLL? DLL's don't normally run from the temp
folder, and if you have one that's doing so, it is likely a sign of a
malware infection.
 
P

Patrick Keenan

Martin Racette said:
How can I find to what process a certain DLL belong, there is one DLL in
the TEMP directory, I can not delete it because it is in use

That's a bad sign. Legitmate applications don't run from DLLs left behind
in the temp folders.
but I do not know what prcess is using it

It's likely to be malware, and it's likely that your system is infected.

Try renaming the DLL - change the extention to .BAD, for example, and
reboot. Look for error messages on restart to help you identify the
infection.

HTH
-pk
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top