qballer
qballer

Reputation: 2111

How do I see which DLL is running in a given thread on a computer without Visual Studio installed?

There is a problem coming from a third-party DLL in our application, and it happens on a client's computer, which doesn't have Visual Studio installed.

Is there a way to 'break' the application and see which DLL is executing (for a given thread) at that moment? Some lighter-weight tool, perhaps?

Upvotes: 0

Views: 72

Answers (1)

sashoalm
sashoalm

Reputation: 79467

You can use Process Explorer. Double click on a process, then open Threads tab, and double click on a thread.

enter image description here

Upvotes: 1

Related Questions