Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Utility for viewing which files/dlls are loaded by an executable image

I know there is a utility for this because I used to use it...just can't remember the name. I'm looking for a Windows (Windows-7) utility that will allow me to select an executable image running and have it tell me what files/dlls that program has loaded and from what directory. I am writing software in Visual Studio and would like to verify at runtime which dlls my program is loading.

like image 712
GregH Avatar asked Feb 25 '11 06:02

GregH


2 Answers

Visual Studio does it well. Use Tools > Attach to Process, Debug > Break All. Then Debug > Windows > Modules. For VS2015+ start that with Debug > Attach to Process.

like image 56
Hans Passant Avatar answered Nov 15 '22 07:11

Hans Passant


use Process Monitor or Process Explorer.

like image 23
RoboAlex Avatar answered Nov 15 '22 07:11

RoboAlex