var fDesc=new Array(); fDesc[0] = "DLL Finder is the command-line tool to quickly find the matching DLL in all running Processes.

For each discovered DLL in a process it displays,

# Target Process Name
# Process ID
# Full DLL Name
# DLL Base Address
# DLL Load Count
# DLL File Path

On 64 bit system, 32-bit processes are shown with suffix "*32" for easier identification.


It is mainly useful for developers and reserachers. Being a command-line tool makes it easy for automation.


DLL Finder is available in both 32-bit & 64-bit versions and works on all platforms starting from Windows XP to Windows 8."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }